2021-03-28 18:50:39 +00:00
|
|
|
server {
|
|
|
|
server_name _;
|
|
|
|
root /var/www/;
|
|
|
|
|
2021-06-13 10:21:21 +00:00
|
|
|
client_max_body_size 256M;
|
|
|
|
client_body_temp_path /tmp 1 2;
|
|
|
|
|
|
|
|
|
2021-03-28 18:50:39 +00:00
|
|
|
location / {
|
|
|
|
try_files $uri /index.php$is_args$args;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ ^/index\.php(/|$) {
|
|
|
|
fastcgi_pass 127.0.0.1:9000;
|
|
|
|
fastcgi_split_path_info ^(.+\.php)(/.*)$;
|
2021-10-25 08:25:30 +00:00
|
|
|
send_timeout 1800;
|
|
|
|
fastcgi_read_timeout 1800;
|
|
|
|
fastcgi_buffers 16 16k;
|
|
|
|
fastcgi_buffer_size 32k;
|
|
|
|
|
2021-03-28 18:50:39 +00:00
|
|
|
include fastcgi_params;
|
|
|
|
|
|
|
|
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
|
|
|
|
fastcgi_param DOCUMENT_ROOT $realpath_root;
|
|
|
|
}
|
|
|
|
|
|
|
|
# return 404 for all other php files not matching the front controller
|
|
|
|
# this prevents access to other php files you don't want to be accessible.
|
|
|
|
location ~ \.php$ {
|
|
|
|
return 404;
|
|
|
|
}
|
|
|
|
}
|