-
-
Save messified/6fa12372b556f63a9c82 to your computer and use it in GitHub Desktop.
This file contains 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 dev.scrum-master.com; | |
client_max_body_size 20M; | |
# Document root, make sure this points to your Symfony2 /web directory | |
root /var/www/scrum-master/path/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$is_args$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