Initial checkin

This commit is contained in:
Jan Eitzinger
2021-05-19 14:27:44 +02:00
parent f6c316f5b3
commit 4ef1a81222
11 changed files with 371 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
upstream php-upstream {
server php:9001;
}

View File

@@ -0,0 +1,24 @@
server {
server_name ${NGINX_SYMFONY_SERVER_NAME};
root /var/www/symfony/public;
location / {
try_files $uri @rewriteapp;
}
location @rewriteapp {
rewrite ^(.*)$ /index.php/$1 last;
}
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;
}
error_log /var/log/nginx/symfony_error.log;
access_log /var/log/nginx/symfony_access.log;
}