2021-05-19 14:27:44 +02:00
|
|
|
server {
|
2021-09-14 12:06:13 +02:00
|
|
|
server_name localhost;
|
2021-05-19 14:27:44 +02:00
|
|
|
root /var/www/symfony/public;
|
|
|
|
|
|
|
|
location / {
|
2021-09-14 12:06:13 +02:00
|
|
|
try_files $uri /index.php$is_args$args;
|
2021-05-19 14:27:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
location ~ ^/index\.php(/|$) {
|
|
|
|
fastcgi_pass php-upstream;
|
|
|
|
fastcgi_split_path_info ^(.+\.php)(/.*)$;
|
|
|
|
include fastcgi_params;
|
|
|
|
fastcgi_param HTTPS off;
|
2021-07-15 18:38:52 +02:00
|
|
|
fastcgi_read_timeout 300;
|
2021-09-14 12:06:13 +02:00
|
|
|
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
|
|
|
|
fastcgi_param DOCUMENT_ROOT $realpath_root;
|
|
|
|
internal;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ \.php$ {
|
|
|
|
return 404;
|
2021-05-19 14:27:44 +02:00
|
|
|
}
|
|
|
|
}
|