Nginx-Configurations/http.d/graph.shad.moe

18 lines
513 B
Text
Raw Permalink Normal View History

2024-11-04 11:09:00 -06:00
server {
server_name graph.shad.moe www.graph.shad.moe;
ssl_certificate /etc/letsencrypt/live/graph.shad.moe/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/graph.shad.moe/privkey.pem;
2024-11-04 13:52:16 -06:00
ssl_trusted_certificate /etc/letsencrypt/live/graph.shad.moe/fullchain.pem;
2024-11-04 11:09:00 -06:00
2024-11-04 13:52:16 -06:00
include snippets/global/common-ssl.conf;
2024-11-04 11:09:00 -06:00
2024-11-04 13:52:16 -06:00
include snippets/proxy/common-proxy-headers.conf;
2024-11-04 11:09:00 -06:00
location / {
2024-11-04 13:52:16 -06:00
proxy_pass https://grafana;
2024-11-04 11:09:00 -06:00
}
2024-11-04 13:52:16 -06:00
include snippets/global/errors/http-cat-error-pages.conf;
}