“Nginx用户密码认证配置 Basic HTTP authentication”的版本间的差异
跳到导航
跳到搜索
(创建页面,内容为“=Prometheus通过Nginx加密登陆= ==ng配置== <pre> cat gf.conf server { listen 80; server_name gf.linuxsa.org; # access_log /var/log/nginx/test-nux…”) |
|||
第1行: | 第1行: | ||
=Prometheus通过Nginx加密登陆= | =Prometheus通过Nginx加密登陆= | ||
+ | |||
+ | == == | ||
+ | <pre> | ||
+ | #安装apache-htpasswd工具 | ||
+ | yum -y install httpd-tools | ||
+ | apt -y install apache2-utils | ||
+ | |||
+ | #使用 htpasswd 生成认证密钥对 | ||
+ | htpasswd -c .htpasswd admin | ||
+ | New password: | ||
+ | Re-type new password: | ||
+ | Adding password for user admin | ||
+ | cat .htpasswd | ||
+ | </pre> | ||
==ng配置== | ==ng配置== | ||
<pre> | <pre> |
2020年4月22日 (三) 10:06的版本
Prometheus通过Nginx加密登陆
#安装apache-htpasswd工具 yum -y install httpd-tools apt -y install apache2-utils #使用 htpasswd 生成认证密钥对 htpasswd -c .htpasswd admin New password: Re-type new password: Adding password for user admin cat .htpasswd
ng配置
cat gf.conf server { listen 80; server_name gf.linuxsa.org; # access_log /var/log/nginx/test-nuxt-bcb-blockchain-website.lliao.net.log; #error_log /var/log/nginx/test-nux-bcb.evan.error.log; client_max_body_size 10m; location / { proxy_pass http://10.39.10.14:3000; proxy_http_version 1.1; #set_real_ip_from 10.0.0.0/8; #set_real_ip_from 172.16.0.0/12; #set_real_ip_from 192.168.0.0/16; #real_ip_header X-Forwarded-For; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Remote-Port $remote_port; proxy_set_header X-Forwarded-Proto $scheme; proxy_redirect off; proxy_connect_timeout 1800s; proxy_send_timeout 1800s; proxy_read_timeout 1800s; real_ip_recursive on; # real_ip_header X-Forwarded-For; # set_real_ip_from 0.0.0.0/0; # proxy_set_header Host $host; # proxy_set_header X-Real-IP $remote_addr; # proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; #proxy_set_header Host $host:$server_port; #proxy_set_header HTTP_X_FORWARDED_FOR $remote_addr; #proxy_set_header X-NginX-Proxy true; # proxy_set_header X-Real-IP $remote_addr; # proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; # proxy_set_header Upgrade $http_upgrade; # proxy_set_header Connection "upgrade"; } }