Advertisement
ruffyen

Nginx Config

Jul 28th, 2014
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. server {
  2. listen 80;
  3. server_name www.spydermunkey.com spydermunkey.com;
  4.  
  5. access_log /home/pwarner/logs/spydermunkey.com_access;
  6. error_log /home/pwarner/logs/spydermunkey.com_error;
  7.  
  8. location / {
  9. proxy_pass http://127.0.0.1:5000;
  10. }
  11.  
  12. location /static {
  13. alias /home/pwarner/dev/smv2/static;
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement