chore(env): update production environment variables and enhance proxy handling in Nginx configuration

This commit is contained in:
2026-06-07 22:20:03 +03:30
parent d1d42b38d1
commit ca43502ffb
5 changed files with 19 additions and 4 deletions

View File

@@ -39,6 +39,9 @@ server {
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
fastcgi_param HTTP_X_FORWARDED_PROTO $http_x_forwarded_proto;
fastcgi_param HTTP_X_FORWARDED_FOR $proxy_add_x_forwarded_for;
fastcgi_param HTTP_X_FORWARDED_HOST $http_x_forwarded_host;
include fastcgi_params;
fastcgi_hide_header X-Powered-By;
}