Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- server {
- listen 80;
- server_name 192.168.169.130;
- location /customer {
- proxy_pass http://192.168.169.130:5601/app/kibana;
- rewrite ^/customer/(.*) /$1 break;
- proxy_http_version 1.1;
- proxy_set_header Upgrade $http_upgrade;
- proxy_set_header Connection "upgrade";
- proxy_set_header Host $host;
- proxy_cache_bypass $http_upgrade;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment