Guest User

Untitled

a guest
Dec 16th, 2015
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.45 KB | None | 0 0
  1. upstream django {
  2.     server unix:///home/www/django/django.sock;
  3. }
  4.  
  5. server {
  6.     listen      8000;
  7.     server_name     hostname.com;
  8.     charset     utf-8;
  9.  
  10.     client_max_body_size 75M;  
  11.  
  12.     location /media  {
  13.         alias /home/www/django/media;
  14.     }
  15.  
  16.     location /static {
  17.         alias /home/www/django/static;
  18.  
  19.     }
  20.  
  21.     location / {
  22.         uwsgi_pass  django;
  23.         include     /home/www/django/uwsgi_params;
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment