Files
timebank-cc-public/docker/nginx/default.conf
Ronald Huynen 2547717edb Initial commit
2026-03-23 21:37:59 +01:00

32 lines
867 B
Plaintext

server {
listen 80;
server_name localhost;
root /var/www/public;
index index.php index.html;
client_max_body_size 100M;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_pass app:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTP_COOKIE $http_cookie;
fastcgi_param HTTP_HOST $http_host;
fastcgi_param HTTP_X_FORWARDED_FOR $proxy_add_x_forwarded_for;
fastcgi_param HTTP_X_FORWARDED_PROTO $scheme;
fastcgi_param HTTP_X_FORWARDED_HOST $http_host;
fastcgi_param HTTP_X_FORWARDED_PORT 8000;
fastcgi_param SERVER_PORT 8000;
fastcgi_param HTTPS off;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}