Files
data
nginx
templates
default.conf.template
php-upstream.conf.template
Dockerfile
nginx.conf
php-fpm
.env
.gitignore
LICENSE
README.md
docker-compose-dev.yml
docker-compose.yml
cc-docker/nginx/templates/default.conf.template
Christoph Kluge d38a526bff increase nginx default timeout
-Prevents 504 timeout errors when loading large job metrics
2021-07-15 18:38:52 +02:00

23 lines
529 B
Plaintext

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;
fastcgi_read_timeout 300;
}
}