Last active
December 26, 2015 14:19
-
-
Save azamara/7164350 to your computer and use it in GitHub Desktop.
jnw.io.conf
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 www.jnw.io jnw.io; | |
| root /Users/azamara/projects/jnw.io; | |
| index index.html index.htm; | |
| location / { | |
| try_files $uri $uri/ /index.html; | |
| # WebSocket Proxy | |
| proxy_http_version 1.1; | |
| proxy_set_header Upgrade $http_upgrade; | |
| proxy_set_header Connection "upgrade"; | |
| } | |
| location ~ \.php$ { | |
| fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
| # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini | |
| # With php5-cgi alone: | |
| # fastcgi_pass 127.0.0.1:9000; | |
| # With php5-fpm: | |
| fastcgi_pass unix:/var/run/php5-fpm.sock; | |
| fastcgi_index index.php; | |
| include fastcgi_params; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment