我已经设置并启动了默认grafana,它在http:// localhost:3000上可以正常工作。我正在尝试使用安装了ssl的nginx代理它。我正在尝试让它响应https:// localhost / grafana,但它仅提供以下服务:
{{alert.title}}
我的nginx服务器块中有这个:
location /grafana {
proxy_pass http://localhost:3000;
proxy_set_header Host $host;
}