Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. server {
  2. listen 80;
  3. server_name example.com;
  4.  
  5. location / {
  6. uwsgi_pass unix:/var/run/example.sock;
  7. include uwsgi_params;
  8. }
  9.  
  10. location /static/ {
  11. alias /home/ilya/webapps/example.com/www/static/;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement