Skip to content

Instantly share code, notes, and snippets.

@sameg14
Created August 13, 2015 19:44
Show Gist options
  • Save sameg14/127eb87ae91803bb82d8 to your computer and use it in GitHub Desktop.
Save sameg14/127eb87ae91803bb82d8 to your computer and use it in GitHub Desktop.
Symfony vhost nginx config with index.php as the front controller entry point
server {
listen 80;
server_name symfony.vm;
root /usr/share/nginx/html/web;
error_log /var/log/nginx/symfony.error.log;
access_log /var/log/nginx/symfony.access.log;
rewrite ^/index\.php/?(.*)$ /$1 permanent;
location / {
index index.php;
try_files $uri @rewriteapp;
}
location @rewriteapp {
rewrite ^(.*)$ /index.php/$1 last;
}
location ~ ^/(index|config)\.php(/|$) {
fastcgi_param ENVIRONMENT development;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTPS off;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment