公网使用grafana域名无法正常跳转
Posted 大数据陈浩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了公网使用grafana域名无法正常跳转相关的知识,希望对你有一定的参考价值。
使用grafana域名无法进行跳转
只能通过nginx代理才能进行域名跳转
nginx配置
yum install nginx
cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.bak
vim /etc/nginx/nginx.conf
location /grafana/
root html;
index index.html index.htm;
proxy_pass http://ip: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 服务器的配置文件(grafana.ini),注意需要去掉行前的注释符号“;”。[server]段涉及以下三处需要更改
# The public facing domain name used to access grafana from a browser
domain = bigdataplatform/grafana/
# Redirect to correct domain if host header does not match domain
# Prevents DNS rebinding attacks
enforce_domain = false
# The full public facing url
root_url = %(protocol)s://%(domain)s
重启nginx和grafana
systemctl restart grafana-server
service nginx restart
验证结果
以上是关于公网使用grafana域名无法正常跳转的主要内容,如果未能解决你的问题,请参考以下文章
IPV6经过多种电路传输至客户端ping 域名解析正常,网页无法打开
Ubuntu20.04下使用cpolar配置公网域名访问个人电脑