I dont think the nginx config verifier has caught a single configuration error ever

This commit is contained in:
Daniel Lovbrotte Olsen 2023-01-17 18:42:06 +01:00
parent a5bbd65757
commit 64d0253aa0
1 changed files with 2 additions and 2 deletions

View File

@ -189,7 +189,7 @@ in {
proxyPass = proxyPath v; proxyPass = proxyPath v;
extraConfig = '' extraConfig = ''
allow ${values.ildkule.ipv4}; allow ${values.ildkule.ipv4};
allow [${values.ildkule.ipv6}]; allow ${values.ildkule.ipv6};
deny all; deny all;
''; '';
})) }))
@ -200,7 +200,7 @@ in {
proxyPass = "http://127.0.0.1:9000/_synapse/metrics"; proxyPass = "http://127.0.0.1:9000/_synapse/metrics";
extraConfig = '' extraConfig = ''
allow ${values.ildkule.ipv4}; allow ${values.ildkule.ipv4};
allow [${values.ildkule.ipv6}]; allow ${values.ildkule.ipv6};
deny all; deny all;
''; '';
}; };