Skip to content

Instantly share code, notes, and snippets.

@mikeyakymenko
Created March 21, 2015 18:30
Show Gist options
  • Select an option

  • Save mikeyakymenko/3f1d593e4e43cf38d6a8 to your computer and use it in GitHub Desktop.

Select an option

Save mikeyakymenko/3f1d593e4e43cf38d6a8 to your computer and use it in GitHub Desktop.
server simple dj conf
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