about summary refs log tree commit diff
path: root/ops
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2021-05-21T11·21+0200
committerflokli <flokli@flokli.de>2021-05-21T11·33+0000
commitcd2e889f4176a8586b84ea4e339f16427bbde829 (patch)
tree38923ce30adc10f6749717a41899f65fa0c7765e /ops
parent5036ae43760968aa7ad4decc5d314c7238dfcdbd (diff)
feat(apereo-cas): move away from 127.0.0.1:8443 r/2599
The following commit itends to bind on port 8443 on all interfaces,
so let's move this to something else.

Change-Id: Ibb94a0f4e6892b6e543b542b89bcdaaefb617f23
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3126
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'ops')
-rw-r--r--ops/modules/www/login.tvl.fyi.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/modules/www/login.tvl.fyi.nix b/ops/modules/www/login.tvl.fyi.nix
index 05b7cee253..dd2e963241 100644
--- a/ops/modules/www/login.tvl.fyi.nix
+++ b/ops/modules/www/login.tvl.fyi.nix
@@ -13,7 +13,7 @@
 
       extraConfig = ''
         location / {
-          proxy_pass http://localhost:8443;
+          proxy_pass http://localhost:8444;
           proxy_set_header X-Forwarded-For $remote_addr;
           proxy_set_header X-Forwarded-Proto https;
           proxy_set_header Host $host;