This commit is contained in:
2026-06-30 12:55:46 +03:00
parent a37e7c6ebf
commit 2ace9e152a
2 changed files with 7 additions and 17 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ in
secretFile = config.sops.secrets.nextcloud-talk-secret.path; secretFile = config.sops.secrets.nextcloud-talk-secret.path;
}; };
settings = { settings = {
http.listen = "127.0.0.1:7880"; http.listen = "127.0.0.1:8080";
clients.internalsecretFile = config.sops.secrets.internal-secret.path; clients.internalsecretFile = config.sops.secrets.internal-secret.path;
sessions = { sessions = {
hashkeyFile = config.sops.secrets.hashkey.path; hashkeyFile = config.sops.secrets.hashkey.path;
+6 -16
View File
@@ -94,25 +94,15 @@ in
client_max_body_size 5G; client_max_body_size 5G;
''; '';
}; };
"talk.private" = {
forceSSL = false;
enableACME = false;
listen = [
{
addr = "127.0.0.1";
port = 7880;
}
];
};
"talk.home.arpa" = { "talk.home.arpa" = {
forceSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
locations = { # locations = {
"/" = { # "/" = {
proxyPass = "http://127.0.0.1:7880"; # proxyPass = "http://127.0.0.1:7880";
proxyWebsockets = true; # proxyWebsockets = true;
}; # };
}; # };
extraConfig = '' extraConfig = ''
client_max_body_size 5G; client_max_body_size 5G;
''; '';