about summary refs log tree commit diff
path: root/ops
diff options
context:
space:
mode:
authorLuke Granger-Brown <hg@lukegb.com>2020-07-07T22·54+0000
committerlukegb <lukegb@tvl.fyi>2020-07-08T17·49+0000
commit2c7e9986e2337959a25d449f9d18b60992dd31ea (patch)
treea378e59c03ddebc92dff1f681a31b0d2c1a6e7a5 /ops
parent37ec60c70629fa5f6ace47488ba035a9a0bbae96 (diff)
chore(apereo-cas): fix up configuration r/1239
- X-Forwarded-Proto support so it knows it's behind TLS
- Remove extraneous logs and just log to stdout so it's caught be systemd

Change-Id: I650777bbfd24a1922f26967ffff7da06d14b6639
Reviewed-on: https://cl.tvl.fyi/c/depot/+/952
Tested-by: BuildkiteCI
Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'ops')
-rw-r--r--ops/nixos/www/login.tvl.fyi.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/ops/nixos/www/login.tvl.fyi.nix b/ops/nixos/www/login.tvl.fyi.nix
index 8513c6e660..05b7cee253 100644
--- a/ops/nixos/www/login.tvl.fyi.nix
+++ b/ops/nixos/www/login.tvl.fyi.nix
@@ -15,6 +15,7 @@
         location / {
           proxy_pass http://localhost:8443;
           proxy_set_header X-Forwarded-For $remote_addr;
+          proxy_set_header X-Forwarded-Proto https;
           proxy_set_header Host $host;
         }
       '';