summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/surtr/http.nix2
-rw-r--r--hosts/surtr/matrix.nix4
2 files changed, 3 insertions, 3 deletions
diff --git a/hosts/surtr/http.nix b/hosts/surtr/http.nix
index a7b61d81..a17f846e 100644
--- a/hosts/surtr/http.nix
+++ b/hosts/surtr/http.nix
@@ -10,7 +10,7 @@
10 10
11 services.nginx = { 11 services.nginx = {
12 enable = true; 12 enable = true;
13 package = pkgs.nginxQuic; 13 # package = pkgs.nginxQuic;
14 recommendedGzipSettings = true; 14 recommendedGzipSettings = true;
15 recommendedProxySettings = true; 15 recommendedProxySettings = true;
16 recommendedTlsSettings = true; 16 recommendedTlsSettings = true;
diff --git a/hosts/surtr/matrix.nix b/hosts/surtr/matrix.nix
index a178458a..b6e6d29d 100644
--- a/hosts/surtr/matrix.nix
+++ b/hosts/surtr/matrix.nix
@@ -57,9 +57,9 @@
57 sslTrustedCertificate = "/run/credentials/nginx.service/synapse.li.chain.pem"; 57 sslTrustedCertificate = "/run/credentials/nginx.service/synapse.li.chain.pem";
58 listen = [ 58 listen = [
59 { addr = "0.0.0.0"; port = 443; ssl = true; } 59 { addr = "0.0.0.0"; port = 443; ssl = true; }
60 { addr = "[::]"; port = 443; ssl = true; } 60 { addr = "[::0]"; port = 443; ssl = true; }
61 { addr = "0.0.0.0"; port = 8448; ssl = true; } 61 { addr = "0.0.0.0"; port = 8448; ssl = true; }
62 { addr = "[::]"; port = 8448; ssl = true; } 62 { addr = "[::0]"; port = 8448; ssl = true; }
63 ]; 63 ];
64 locations = let 64 locations = let
65 synapse = { 65 synapse = {