kibana-own-home
kibana-own-home copied to clipboard
502 gateway with 6.5.2
run nginx with docker
nginx.conf
server {
listen 8080;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
#proxy_pass http://localhost:80;
auth_basic "nginx basic auth";
auth_basic_user_file /etc/nginx/conf.d/pass.db;
proxy_set_header X-PROXY-USER $remote_user;
proxy_pass http://localhost:5601;
}
}
run nginx and expose 8080 like this docker run -d -p 8080:8080 nginx
install kibana by local files ,not by docker。
kibana.yml
xpack.reporting.encryptionKey: "a_random_string"
elasticsearch.url: http://localhost:19200
own_home.elasticsearch.url: http://localhost:9200
elasticsearch.requestHeadersWhitelist: [ x-proxy-user, cookie ]
own_home.session.secretkey: the-password-must-be-at-least-32-characters-long
own_home.session.isSecure: false
own_home.local.groups: [ common01, common02 ]
is there something wrong in my config ? pls tell me ! @wtakase
Could you try to add xpack.spaces.enabled: false
in your kibana.yml?
@wtakase not work , it is same as before o(╥﹏╥)o
@wtakase