Fine tuning and cleanup nginx image.

This commit is contained in:
Jan Eitzinger
2021-09-14 12:06:13 +02:00
parent 13488100c4
commit e612f6c3ce
4 changed files with 39 additions and 36 deletions

View File

@@ -1,22 +1,23 @@
server {
server_name ${NGINX_SYMFONY_SERVER_NAME};
server_name localhost;
root /var/www/symfony/public;
location / {
try_files $uri @rewriteapp;
}
location @rewriteapp {
rewrite ^(.*)$ /index.php/$1 last;
try_files $uri /index.php$is_args$args;
}
location ~ ^/index\.php(/|$) {
fastcgi_pass php-upstream;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTPS off;
fastcgi_read_timeout 300;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
internal;
}
location ~ \.php$ {
return 404;
}
}