Created
July 6, 2012 16:43
-
-
Save joehoyle/3061254 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
| #user nobody; | |
| worker_processes 1; | |
| events { | |
| worker_connections 1024; | |
| } | |
| http { | |
| include mime.types; | |
| default_type application/octet-stream; | |
| sendfile on; | |
| keepalive_timeout 65; | |
| server { | |
| listen 80; | |
| server_name pencwarre.local; | |
| location / { | |
| root /Users/joe/Sites/penwarre.co.uk; | |
| include php.conf; | |
| index index.php; | |
| try_files $uri $uri/ /index.php?q=$uri&$args; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment