Guest User

newb-nginx

a guest
Jan 19th, 2016
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. server {
  2. listen 80;
  3.  
  4. server_name 192.168.169.130;
  5.  
  6. location /customer {
  7. proxy_pass http://192.168.169.130:5601/app/kibana;
  8. rewrite ^/customer/(.*) /$1 break;
  9. proxy_http_version 1.1;
  10. proxy_set_header Upgrade $http_upgrade;
  11. proxy_set_header Connection "upgrade";
  12. proxy_set_header Host $host;
  13. proxy_cache_bypass $http_upgrade;
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment