1
0
Fork 0
get-installer-bootstrap/docker/nginx/default.conf
2026-05-05 09:32:06 +02:00

25 lines
540 B
Text

server {
listen 80;
server_name _;
root /app/public;
index index.php;
client_max_body_size 2m;
location / {
try_files $uri /index.php$is_args$args;
}
location ~ ^/index\.php(/|$) {
fastcgi_pass app:9000;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
internal;
}
location ~ \.php$ {
return 404;
}
}