mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
missing semicolon
This commit is contained in:
parent
97478ad0d2
commit
3e852bd90b
4 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue