Created
February 1, 2012 02:28
-
-
Save merk/1714678 to your computer and use it in GitHub Desktop.
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 default_server; | |
| server_name .localhost; | |
| charset utf-8; | |
| root /Users/tim/Sites/$host/web; | |
| try_files $uri $uri/ /app_dev.php?$args; | |
| location ~ \.php$ { | |
| fastcgi_split_path_info ^(.+\.php)(.*)$; | |
| fastcgi_pass php; | |
| fastcgi_index app_dev.php; | |
| include fastcgi.conf; | |
| fastcgi_param ENVIRONMENT 'development'; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment