summaryrefslogtreecommitdiffstats
path: root/modules/tozt
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-07-01 20:46:27 -0400
committerJesse Luehrs <doy@tozt.net>2021-07-01 20:46:27 -0400
commitc09f764b265845fb234ce1752ce3ee1048ced1b9 (patch)
treec41212f48d26c66d51dea0cc18e80ea3cad2e2db /modules/tozt
parent1001a47bdc64de2560fa13993bfae53bb5909bc5 (diff)
downloadpuppet-tozt-c09f764b265845fb234ce1752ce3ee1048ced1b9.tar.gz
puppet-tozt-c09f764b265845fb234ce1752ce3ee1048ced1b9.zip
stop running an influxdb server
Diffstat (limited to 'modules/tozt')
-rw-r--r--modules/tozt/files/nginx/influxdb-tls.conf14
-rw-r--r--modules/tozt/files/nginx/influxdb.conf10
-rw-r--r--modules/tozt/manifests/tick.pp11
3 files changed, 0 insertions, 35 deletions
diff --git a/modules/tozt/files/nginx/influxdb-tls.conf b/modules/tozt/files/nginx/influxdb-tls.conf
deleted file mode 100644
index 2341261..0000000
--- a/modules/tozt/files/nginx/influxdb-tls.conf
+++ /dev/null
@@ -1,14 +0,0 @@
-server {
- listen 443 ssl;
- server_name influxdb.tozt.net;
-
- access_log /var/log/nginx/influxdb.access.log;
- error_log /var/log/nginx/influxdb.error.log;
-
- include ssl;
-
- location / {
- proxy_pass http://127.0.0.1:8086/;
- }
-}
-# vim:ft=nginx
diff --git a/modules/tozt/files/nginx/influxdb.conf b/modules/tozt/files/nginx/influxdb.conf
deleted file mode 100644
index 744e2fd..0000000
--- a/modules/tozt/files/nginx/influxdb.conf
+++ /dev/null
@@ -1,10 +0,0 @@
-server {
- listen 80;
- server_name influxdb.tozt.net;
-
- access_log /var/log/nginx/influxdb.access.log;
- error_log /var/log/nginx/influxdb.error.log;
-
- rewrite ^(.*) https://$host$1 permanent;
-}
-# vim:ft=nginx
diff --git a/modules/tozt/manifests/tick.pp b/modules/tozt/manifests/tick.pp
deleted file mode 100644
index d4df535..0000000
--- a/modules/tozt/manifests/tick.pp
+++ /dev/null
@@ -1,11 +0,0 @@
-class tozt::tick {
- include tick::server
-
- nginx::site {
- "influxdb-tls":
- source => 'puppet:///modules/tozt/nginx/influxdb-tls.conf',
- require => Class['certbot'];
- "influxdb":
- source => 'puppet:///modules/tozt/nginx/influxdb.conf';
- }
-}