Skip to content

Instantly share code, notes, and snippets.

@Irvyne
Created August 1, 2014 13:13
Show Gist options
  • Save Irvyne/0464721fe89b48e70abf to your computer and use it in GitHub Desktop.
Save Irvyne/0464721fe89b48e70abf to your computer and use it in GitHub Desktop.
server {
listen 80;
root /var/www/Symfony/web;
server_name site.dev;
location / {
try_files $uri /app.php$is_args$args;
}
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; # For nginx < 1.6 only
fastcgi_param HTTPS off;
}
location ~ /\.ht {
deny all;
}
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