From 4e5410017e38ad0d425c68d032bc4c908c5dbded Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 1 Jul 2021 23:35:30 -0400 Subject: install grafana --- modules/tozt/files/nginx/grafana-tls.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 modules/tozt/files/nginx/grafana-tls.conf (limited to 'modules/tozt/files/nginx/grafana-tls.conf') diff --git a/modules/tozt/files/nginx/grafana-tls.conf b/modules/tozt/files/nginx/grafana-tls.conf new file mode 100644 index 0000000..5fc5de4 --- /dev/null +++ b/modules/tozt/files/nginx/grafana-tls.conf @@ -0,0 +1,14 @@ +server { + listen 443 ssl; + server_name grafana.tozt.net; + + access_log /var/log/nginx/grafana.access.log; + error_log /var/log/nginx/grafana.error.log; + + include ssl; + + location / { + proxy_pass http://127.0.0.1:3001/; + } +} +# vim:ft=nginx -- cgit v1.2.3-54-g00ecf