Skip to content

Instantly share code, notes, and snippets.

@wbars
Created May 5, 2015 01:51
Show Gist options
  • Save wbars/efc00cd9835d5d751494 to your computer and use it in GitHub Desktop.
Save wbars/efc00cd9835d5d751494 to your computer and use it in GitHub Desktop.
Nginx config for symfony2
server {
listen 80;
server_name localhost;
root %PROJECT_HOME_DIR%/web;
location / {
try_files $uri @rewriteapp;
}
location @rewriteapp {
rewrite ^(.*)$ /app_dev.php/$1 last;
}
location ~ ^/(app|app_dev|config)\.php(/|$) {
fastcgi_pass 127.0.0.1:9000;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTPS off;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 256k;
fastcgi_busy_buffers_size 256k;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment