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 +}