Created
August 13, 2015 19:44
-
-
Save sameg14/127eb87ae91803bb82d8 to your computer and use it in GitHub Desktop.
Symfony vhost nginx config with index.php as the front controller entry point
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; | |
server_name symfony.vm; | |
root /usr/share/nginx/html/web; | |
error_log /var/log/nginx/symfony.error.log; | |
access_log /var/log/nginx/symfony.access.log; | |
rewrite ^/index\.php/?(.*)$ /$1 permanent; | |
location / { | |
index index.php; | |
try_files $uri @rewriteapp; | |
} | |
location @rewriteapp { | |
rewrite ^(.*)$ /index.php/$1 last; | |
} | |
location ~ ^/(index|config)\.php(/|$) { | |
fastcgi_param ENVIRONMENT development; | |
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