-
-
Save adityamr15/0b1ad3fbd320ce4e6334f01730b6edbd to your computer and use it in GitHub Desktop.
Symfony2 nginx virtual host (php-fpm)
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 being used (exact name, wildcards or regular expression) | |
server_name mysite.com; | |
client_max_body_size 20M; | |
# Document root, make sure this points to your Symfony2 /web directory | |
root /home/user/sites/mysite.com/web; | |
# Logging | |
error_log /home/user/sites/nginx-log/error.log; | |
access_log /home/user/sites/nginx-log/access.log; | |
location / { | |
# try to serve file directly, fallback to rewrite | |
try_files $uri @rewriteapp; | |
} | |
location @rewriteapp { | |
rewrite ^(.*)$ /app.php/$1 last; | |
} | |
# Pass the PHP scripts to FastCGI server | |
location ~ ^/(app|app_dev|config)\.php(/|$) { | |
fastcgi_pass unix:/var/run/php5-fpm-mysite.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