kibana+nginx配置密码 ubuntu

JAVA进阶之路-nginx设置密码
Kibana------通过Nginx代理Kibana并实现登陆认证

需要配置一下nginx文件
nginx配置文件详解

密码生成安装软件

shell 复制代码
apt install apache2-utils

注:不需要将kibana的配置改成127.0.0.1,仍用原来的0.0.0.0就可以

yaml 复制代码
server.port: 5601
server.host: "0.0.0.0"
server.basePath: "/kibana"
elasticsearch.hosts: ["http://127.0.0.1:9200"]
# 操作界面语言设置为中文
i18n.locale: "zh-CN"

注2:宝塔自带的nginx感觉有问题,建议直接复制这位博主的重新保存一下关于宝塔面板中项目配置文件与nginx配置

shell 复制代码
user  www www;
worker_processes auto;
error_log  /www/wwwlogs/nginx_error.log  crit;
pid        /www/server/nginx/logs/nginx.pid;
worker_rlimit_nofile 51200;
 
events
    {
        use epoll;
        worker_connections 51200;
        multi_accept on;
    }
 
http
    {
        include       mime.types;
		#include luawaf.conf;
 
		include proxy.conf;
 
        default_type  application/octet-stream;
 
        server_names_hash_bucket_size 512;
        client_header_buffer_size 32k;
        large_client_header_buffers 4 32k;
        client_max_body_size 50m;
 
        sendfile   on;
        tcp_nopush on;
 
        keepalive_timeout 60;
 
        tcp_nodelay on;
 
        fastcgi_connect_timeout 300;
        fastcgi_send_timeout 300;
        fastcgi_read_timeout 300;
        fastcgi_buffer_size 64k;
        fastcgi_buffers 4 64k;
        fastcgi_busy_buffers_size 128k;
        fastcgi_temp_file_write_size 256k;
		fastcgi_intercept_errors on;
 
        gzip on;
        gzip_min_length  1k;
        gzip_buffers     4 16k;
        gzip_http_version 1.1;
        gzip_comp_level 2;
        gzip_types     text/plain application/javascript application/x-javascript text/javascript text/css application/xml;
        gzip_vary on;
        gzip_proxied   expired no-cache no-store private auth;
        gzip_disable   "MSIE [1-6]\.";
 
        limit_conn_zone $binary_remote_addr zone=perip:10m;
		limit_conn_zone $server_name zone=perserver:10m;
 
        server_tokens off;
        access_log off;
# 这个server就是宝塔,删了你就访问不了主页咯
server
    {
        listen 888;
        server_name phpmyadmin;
        index index.html index.htm index.php;
        root  /www/server/phpmyadmin;
 
        #error_page   404   /404.html;
        include enable-php.conf;
 
        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }
 
        location ~ .*\.(js|css)?$
        {
            expires      12h;
        }
 
        location ~ /\.
        {
            deny all;
        }
 
        access_log  /www/wwwlogs/access.log;
    }
 
#    A部分
 
# server{
#   listen 80;
 
#   server_name location;
#   location / {
#         root /www/wwwroot/mikotofans/client/dist;
#         index index.html ;
#         try_files $uri $uri/ index.html;
#   }
#   location /api {
# 	proxy_pass http://127.0.0.1:5214/api;
#   }
# }
 
#  B部分
 
include /www/server/panel/vhost/nginx/*.conf;
}
相关推荐
v***431721 小时前
Nginx WebSocket 长连接及数据容量配置
运维·websocket·nginx
2501_9411120721 小时前
深入理解Python的if __name__ == ‘__main__‘
jvm·数据库·python
2501_9411120521 小时前
Python Lambda(匿名函数):简洁之道
jvm·数据库·python
归叶再无青21 小时前
nginx从入门到实践全指南
运维·nginx·bash
猿小喵1 天前
浅谈MySQL主从复制
数据库·mysql
_Minato_1 天前
数据库知识整理——SQL访问控制
数据库
BullSmall1 天前
高斯数据库 (GaussDB) 使用指南
数据库·gaussdb
马克学长1 天前
SSM旅游管理系统3ohx4(程序+源码+数据库+调试部署+开发环境)带论文文档1万字以上,文末可获取,系统界面在最后面。
数据库·旅游管理系统·ssm 框架
朝新_1 天前
Spring事务和事务传播机制
数据库·后端·sql·spring·javaee
A***27951 天前
后端服务限流配置,Spring Cloud Gateway
java·运维·数据库