目的:
經過Nginx服務器對grafana進行代理,實現經過https://域名/grafana在公網進行訪問html
實踐過程:
一、修改Nginx配置(nginx.conf)文件,添加訪問grafana的配置,配置時注意proxy_pass後面必定要有符號 /(目的是去掉/grafana/以匹配自己)nginx
vi /usr/local/nginx/conf/nginx.conf server { listen 443 ssl; server_name example.com; ssl_certificate cert/example.com.pem; ssl_certificate_key cert/example.com.key; location / { root html; index index.html index.htm; } location /grafana/ { root html; index index.html index.htm; proxy_pass http://192.168.31.90:3000; proxy_redirect default; proxy_max_temp_file_size 0k; proxy_connect_timeout 30; proxy_send_timeout 60; proxy_read_timeout 60; proxy_next_upstream error timeout invalid_header http_502; } }
二、修改grafana服務器的配置文件(grafana.ini),注意須要去掉行前的註釋符號 「;」
[server]段涉及如下三處須要更改:
服務器
[server] domain = 填寫你的域名地址 root_url = %(protocol)s://%(domain)s:%(http_port)s/grafana/ serve_from_sub_path = true
三、reload Nginx並重啓grafana服務dom
/usr/local/nginx/sbin/nginx -t /usr/local/nginx/sbin/nginx -s reload systemctl restart grafana-server
四、最後提供下官方文檔中關於轉發的配置說明:
grafana之proxy轉發說明
轉發配置以下:
ide
[server] domain = example.com root_url = %(protocol)s://%(domain)s:%(http_port)s/grafana/ serve_from_sub_path = true