summaryrefslogtreecommitdiffstats
path: root/modules/tozt
diff options
context:
space:
mode:
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';
- }
-}