missing semicolon

This commit is contained in:
TheWanderingCrow 2025-07-02 17:35:47 -04:00
parent 97478ad0d2
commit 3e852bd90b
4 changed files with 4 additions and 4 deletions

View file

@ -41,7 +41,7 @@ in
extraConfig = ''
allow 192.168.0.0/16;
allow 10.8.0.0/24;
allow ${inputs.nix-secrets.network.primary.publicIP}
allow ${inputs.nix-secrets.network.primary.publicIP};
deny all;
'';
forceSSL = true;

View file

@ -11,7 +11,7 @@
extraConfig = ''
allow 192.168.0.0/16;
allow 10.8.0.0/24;
allow ${inputs.nix-secrets.network.primary.publicIP}
allow ${inputs.nix-secrets.network.primary.publicIP};
deny all;
'';
proxyPass = "http://localhost:7745";

View file

@ -33,7 +33,7 @@ in {
locations."/" = {
extraConfig = ''
allow 192.168.0.0/16;
allow ${s.network.primary.publicIP}
allow ${s.network.primary.publicIP};
deny all;
'';
proxyPass = "http://localhost:8089";

View file

@ -41,7 +41,7 @@ in
extraConfig = ''
allow 192.168.0.0/16;
allow 10.8.0.0/24;
allow ${inputs.nix-secrets.network.primary.publicIP}
allow ${inputs.nix-secrets.network.primary.publicIP};
deny all;
'';
proxyPass = "http://10.88.0.9:8080";