29 lines
672 B
Plaintext
29 lines
672 B
Plaintext
|
server {
|
||
|
|
||
|
listen 80;
|
||
|
listen [::]:80;
|
||
|
|
||
|
server_name symfony.dev;
|
||
|
root /var/www/projects/symfony/web;
|
||
|
index index.php index.html index.htm;
|
||
|
|
||
|
location / {
|
||
|
try_files $uri @rewriteapp;
|
||
|
}
|
||
|
|
||
|
location @rewriteapp {
|
||
|
rewrite ^(.*)$ /app.php/$1 last;
|
||
|
}
|
||
|
|
||
|
location ~ ^/(app|app_dev|config)\.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;
|
||
|
}
|