Skip to content

Instantly share code, notes, and snippets.

@JunkOSGitHub
Last active January 6, 2016 09:54
Show Gist options
  • Save JunkOSGitHub/e32f89a0a9c52338d78f to your computer and use it in GitHub Desktop.
Save JunkOSGitHub/e32f89a0a9c52338d78f to your computer and use it in GitHub Desktop.
nginx + Symfony2 = <3
server {
listen 80;
root PATH_TO_PROJECT/web/;
server_name symfony.junk.os;
index index.html index.htm index.nginx-debian.html index.php;
access_log /var/log/nginx/default-access_log;
error_log /var/log/nginx/default-error_log;
location / {
try_files $uri @rewriteapp;
}
location @rewriteapp{
rewrite ^(.*)$ /app_dev.php/$1 last;
}
location ~ ^/(app|app_dev|config)\.php(/|$) {
fastcgi_pass 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