Guest User

Untitled

a guest
Dec 18th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. server {
  2. access_log /var/log/nginx/access-default.log;
  3. error_log /var/log/nginx/error-default.log;
  4.  
  5. listen 80;
  6. location / {
  7. proxy_pass http://172.19.1.1:5000;
  8. proxy_http_version 1.1;
  9. proxy_set_header Upgrade $http_upgrade;
  10. proxy_set_header Connection keep-alive;
  11. proxy_cache_bypass $http_upgrade;
  12. }
  13. }
Add Comment
Please, Sign In to add comment