pass wyoming services through altered ports
This commit is contained in:
@@ -30,6 +30,26 @@
|
||||
containerPort = 9443;
|
||||
hostPort = 9443;
|
||||
}
|
||||
{
|
||||
containerPort = 8002;
|
||||
hostPort = 8002;
|
||||
}
|
||||
{
|
||||
containerPort = 8003;
|
||||
hostPort = 8003;
|
||||
}
|
||||
{
|
||||
containerPort = 8004;
|
||||
hostPort = 8004;
|
||||
}
|
||||
{
|
||||
containerPort = 8005;
|
||||
hostPort = 8005;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
];
|
||||
|
||||
bindMounts = {
|
||||
@@ -72,7 +92,6 @@
|
||||
|
||||
localsecure = {
|
||||
address = ":9443";
|
||||
asDefault = true;
|
||||
http.tls.certResolver = "cloudflare";
|
||||
};
|
||||
|
||||
@@ -95,16 +114,16 @@
|
||||
};
|
||||
};
|
||||
openWakeWord = {
|
||||
address = ":11432";
|
||||
address = ":8002";
|
||||
};
|
||||
faster-whisper = {
|
||||
address = ":11433";
|
||||
address = ":8003";
|
||||
};
|
||||
ollama = {
|
||||
address = ":11434";
|
||||
address = ":8004";
|
||||
};
|
||||
piper = {
|
||||
address = ":11435";
|
||||
address = ":8005";
|
||||
};
|
||||
|
||||
};
|
||||
@@ -138,26 +157,22 @@
|
||||
tcp = {
|
||||
routers = {
|
||||
openWakeWord = {
|
||||
entryPoints = [ "websecure" ];
|
||||
rule = "Path(`/api/openWakeWord`)";
|
||||
entryPoints = [ "openWakeWord" ];
|
||||
service = "openWakeWord";
|
||||
tls.certResolver = "cloudflare";
|
||||
};
|
||||
faster-whisper = {
|
||||
entryPoints = [ "websecure" ];
|
||||
rule = "Path(`/api/faster-whisper`)";
|
||||
entryPoints = [ "faster-whisper" ];
|
||||
service = "faster-whisper";
|
||||
tls.certResolver = "cloudflare";
|
||||
};
|
||||
ollama = {
|
||||
entryPoints = [ "websecure" ];
|
||||
rule = "Path(`/api/ollama`)";
|
||||
entryPoints = [ "ollama" ];
|
||||
service = "ollama";
|
||||
tls.certResolver = "cloudflare";
|
||||
};
|
||||
piper = {
|
||||
entryPoints = [ "websecure" ];
|
||||
rule = "Path(`/api/piper`)";
|
||||
entryPoints = [ "piper" ];
|
||||
service = "piper";
|
||||
tls.certResolver = "cloudflare";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user