Skip to content

Instantly share code, notes, and snippets.

@bocharsky-bw
Last active August 29, 2015 14:02
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 bocharsky-bw/21103928f9c416db86d1 to your computer and use it in GitHub Desktop.
Save bocharsky-bw/21103928f9c416db86d1 to your computer and use it in GitHub Desktop.
The Nginx with PHP5-FPM config example for Symfony Framework
server {
listen 80;
server_name symfony.localhost www.symfony.localhost;
root /var/www/symfony/web;
error_log /var/log/nginx/symfony.error.log;
access_log /var/log/nginx/symfony.access.log;
# strip app_dev.php/ prefix if exists
rewrite ^/app_dev\.php/?(.*)$ /$1 permanent;
location / {
index app_dev.php app.php;
try_files $uri @rewriteapp;
}
location @rewriteapp {
rewrite ^(.*)$ /app_dev.php/$1 last;
}
# pass the PHP scripts to FastCGI server from upstream phpfcgi
location ~ ^/(app|app_dev|config)\.php(/|$) {
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