diff options
author | Rory& <root@rory.gay> | 2024-02-26 16:34:04 +0100 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-02-26 16:34:04 +0100 |
commit | 4a1a1f6717302718498c1f36e6c31866973e916a (patch) | |
tree | 7d980581433f49d82c721d7568994d96e43ca61e | |
parent | Add package reference (diff) | |
download | Rory-Open-Architecture-4a1a1f6717302718498c1f36e6c31866973e916a.tar.xz |
Fix wrong service port.
-rwxr-xr-x | host/Rory-nginx/services/nginx/rory.gay/matrix.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/Rory-nginx/services/nginx/rory.gay/matrix.nix b/host/Rory-nginx/services/nginx/rory.gay/matrix.nix index 940e7b3..8aaedc8 100755 --- a/host/Rory-nginx/services/nginx/rory.gay/matrix.nix +++ b/host/Rory-nginx/services/nginx/rory.gay/matrix.nix @@ -2,7 +2,7 @@ enableACME = true; addSSL = true; locations."/" = { - proxyPass = "http://127.0.0.1:9002"; + proxyPass = "http://127.0.0.1:9001"; extraConfig = '' if ($request_method = 'OPTIONS') { more_set_headers 'Access-Control-Allow-Origin: *'; |