# 背景:减少服务器对外暴露的端口
# kibana配置
$ vi kibana.yml
server.basePath: "/kibana" # 注意开头斜杆
# nginx配置
$ vi /etc/nginx/conf.d/xxx.conf
server {
listen 80;
server_name xxx.com;
location /kibana/ {
proxy_pass http://localhost:6666/; # 注意斜杠
}
}
# 重启nginx
$ nginx -t
$ systemctl restart nginx
网友评论