Created
September 20, 2012 11:34
-
-
Save antonydenyer/3755395 to your computer and use it in GitHub Desktop.
nginx mono ServiceStack
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_names_hash_bucket_size 256; | |
| server { | |
| listen 80; ## listen for ipv4 | |
| server_name _; | |
| access_log /home/dev/www/logs/localhost.access.log; | |
| location / { | |
| root /home/dev/www/current; | |
| index index.html index.htm; | |
| fastcgi_index Default.aspx; | |
| fastcgi_pass unix:/tmp/SOCK-$http_host; | |
| include /etc/nginx/fastcgi_params; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment