This commit is contained in:
2025-08-17 14:37:37 +03:00
parent ca025b5f40
commit 17a66ab261
+13 -10
View File
@@ -2,6 +2,9 @@
config,
...
}:
let
server = "100.64.0.0";
in
{
services = {
nginx = {
@@ -16,7 +19,7 @@
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://sapphira.laxta-platy.ts.net:2283"; # Порт Immich
proxyPass = "http://${server}:2283"; # Порт Immich
proxyWebsockets = true; # Если Immich использует WebSockets
};
};
@@ -24,18 +27,18 @@
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://sapphira.laxta-platy.ts.net:10000"; # Порт Nextcloud
proxyWebsockets = true;
};
};
"llm.zeroq.ru" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://atoridu.laxta-platy.ts.net:11111"; # Порт Open WebUI
proxyPass = "http://${server}:10000"; # Порт Nextcloud
proxyWebsockets = true;
};
};
# "llm.zeroq.ru" = {
# forceSSL = true;
# enableACME = true;
# locations."/" = {
# proxyPass = "http://atoridu.laxta-platy.ts.net:11111"; # Порт Open WebUI
# proxyWebsockets = true;
# };
# };
};
};
};