summaryrefslogtreecommitdiffstats
path: root/modules/tozt
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-03-01 03:34:16 -0500
committerJesse Luehrs <doy@tozt.net>2021-03-01 03:34:16 -0500
commit4670f5437abdede6c048c2b59ec6637bcfc79e54 (patch)
tree874746b1439f5b1f70c78dabb3a308d2d5626464 /modules/tozt
parent22b7d33290b1bc594c532e72d347e32eb92a981f (diff)
downloadpuppet-tozt-4670f5437abdede6c048c2b59ec6637bcfc79e54.tar.gz
puppet-tozt-4670f5437abdede6c048c2b59ec6637bcfc79e54.zip
remove munin config
Diffstat (limited to 'modules/tozt')
-rw-r--r--modules/tozt/files/nginx/munin-tls.conf16
-rw-r--r--modules/tozt/files/nginx/munin.conf10
2 files changed, 0 insertions, 26 deletions
diff --git a/modules/tozt/files/nginx/munin-tls.conf b/modules/tozt/files/nginx/munin-tls.conf
deleted file mode 100644
index 0f7984d..0000000
--- a/modules/tozt/files/nginx/munin-tls.conf
+++ /dev/null
@@ -1,16 +0,0 @@
-server {
- listen 443 ssl;
- server_name munin.tozt.net;
-
- access_log /var/log/nginx/munin.access.log;
- error_log /var/log/nginx/munin.error.log;
-
- include ssl;
-
- location / {
- root /srv/http/munin;
- auth_basic "munin";
- auth_basic_user_file "/media/persistent/munin.htpasswd";
- }
-}
-# vim:ft=nginx
diff --git a/modules/tozt/files/nginx/munin.conf b/modules/tozt/files/nginx/munin.conf
deleted file mode 100644
index 982fe68..0000000
--- a/modules/tozt/files/nginx/munin.conf
+++ /dev/null
@@ -1,10 +0,0 @@
-server {
- listen 80;
- server_name munin.tozt.net;
-
- access_log /var/log/nginx/munin.access.log;
- error_log /var/log/nginx/munin.error.log;
-
- rewrite ^(.*) https://$host$1 permanent;
-}
-# vim:ft=nginx