LoginSignup
2
2

More than 5 years have passed since last update.

kibanaをnginxのリバースプロキシでアクセスする

Posted at

kibanaの設定ファイルでbasePathを指定することができる

/etc/kibana/kibana.yml
server.basePath: "/kibana"
nginx.conf
location /kibana/ {
        proxy_pass http://localhost:5601;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_set_header Host $host;
        rewrite /kibana/(.*)$ /$1 break;
}
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2