Created
March 21, 2015 18:30
-
-
Save mikeyakymenko/3f1d593e4e43cf38d6a8 to your computer and use it in GitHub Desktop.
server simple dj 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.greendog.today greendog.today; | |
| client_max_body_size 100m; | |
| access_log /var/log/nginx/greendogtoday.access.log; | |
| error_log /var/log/nginx/greendogtoday.error.log; | |
| location / { | |
| include uwsgi_params; | |
| uwsgi_pass 127.0.0.1:8034; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment