Advertisement
Guest User

Untitled

a guest
Jul 30th, 2014
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. server {
  2. listen 80;
  3. server_name localhost;
  4. charset utf-8;
  5. client_max_body_size 75M;
  6.  
  7. location / { try_files $uri @yourapplication; }
  8. location @yourapplication {
  9. include uwsgi_params;
  10. uwsgi_pass unix:/var/www/demoapp/demoapp_uwsgi.sock;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement