Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- upstream django {
- server unix:///home/www/django/django.sock;
- }
- server {
- listen 8000;
- server_name hostname.com;
- charset utf-8;
- client_max_body_size 75M;
- location /media {
- alias /home/www/django/media;
- }
- location /static {
- alias /home/www/django/static;
- }
- location / {
- uwsgi_pass django;
- include /home/www/django/uwsgi_params;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment