Skip to content

Instantly share code, notes, and snippets.

@takeit
Last active February 12, 2018 07:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takeit/8d09360b7628e56fa76f84bd327287f5 to your computer and use it in GitHub Desktop.
Save takeit/8d09360b7628e56fa76f84bd327287f5 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name localhost;
root /var/www/symfony/public;
location / {
try_files $uri @rewriteapp;
}
location @rewriteapp {
rewrite ^(.*)$ /index.php/$1 last;
}
location ~ ^/index\.php(/|$) {
fastcgi_pass php:9000;
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment