mirror of
https://github.com/ClusterCockpit/cc-docker.git
synced 2024-11-10 13:57:25 +01:00
22 lines
495 B
Plaintext
22 lines
495 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;
|
|
}
|
|
}
|