Created
September 18, 2012 22:46
-
-
Save skyler/3746501 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; | |
server_name www.coefficientinc.com coefficientinc.com; | |
root /opt/www/coefficient/static; | |
try_files $uri @uwsgi; | |
location @uwsgi { | |
include uwsgi_params; | |
uwsgi_pass unix:/tmp/coefficient-uwsgi.sock; | |
} | |
#charset koi8-r; | |
#access_log /var/log/nginx/log/host.access.log main; | |
#error_page 404 /404.html; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment