From baa08f0b3a8c03975f7f1192ddabcfc1aee2b3a4 Mon Sep 17 00:00:00 2001 From: josh Date: Fri, 3 Apr 2026 10:08:54 +1000 Subject: [PATCH] Nginx update --- docker/nginx.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker/nginx.conf b/docker/nginx.conf index 2e51870..cca7ae9 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -17,7 +17,9 @@ http { location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; + fastcgi_param HTTPS on; + fastcgi_param HTTP_X_FORWARDED_PROTO https; include fastcgi_params; } } -} \ No newline at end of file +}