elasticsearch - Securing Kibana with Nginx -
using nginx , following configuration can make user authentication kibana 4 version.but if provide username , password user information becomes accessible.
how can make elastic search node available public security?
server { listen *:80; server_name myserver.com; location / { proxy_pass http://myserver.com:5601; auth_basic "restricted"; auth_basic_user_file /etc/nginx/.htpasswd; } }
any highly appreciated.
Comments
Post a Comment