nginx配置kibana代理

1、nginx配置

        location /kibana/ {
            proxy_pass http://192.168.0.32:5601;
            proxy_redirect off;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }

2、kibana配置

server.basePath:需要配置跟nginx的location一样

server.rewriteBasePath:开启代理

server.basePath: "/kibana"
server.rewriteBasePath: true

你可能感兴趣的:(nginx,运维)