Last active
January 6, 2016 09:54
-
-
Save JunkOSGitHub/e32f89a0a9c52338d78f to your computer and use it in GitHub Desktop.
nginx + Symfony2 = <3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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