summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-10-23 05:40:26 -0400
committerJesse Luehrs <doy@tozt.net>2019-10-23 05:40:26 -0400
commit3fc3b74e9f73ca7d80ea2d2ec82b0ac76ba551f0 (patch)
treef6ca499fe48914923c879adb80d02f13ccce1176
parent1b476b813e80f67d91ccf78e58d87cfbb33fe69a (diff)
downloadpuppet-tozt-3fc3b74e9f73ca7d80ea2d2ec82b0ac76ba551f0.tar.gz
puppet-tozt-3fc3b74e9f73ca7d80ea2d2ec82b0ac76ba551f0.zip
add rc-teleterm.tozt.net to certbot
-rwxr-xr-xmodules/certbot/files/bootstrap-certbot11
1 files changed, 9 insertions, 2 deletions
diff --git a/modules/certbot/files/bootstrap-certbot b/modules/certbot/files/bootstrap-certbot
index b57b4b4..4eb0dc7 100755
--- a/modules/certbot/files/bootstrap-certbot
+++ b/modules/certbot/files/bootstrap-certbot
@@ -76,6 +76,13 @@ http {
root /tmp;
}
}
+ server {
+ listen 80;
+ server_name rc-teleterm.tozt.net;
+ location / {
+ root /tmp;
+ }
+ }
}
EOF
@@ -84,7 +91,7 @@ if [ -z "$is_running" ]; then
fi
if [ -z "$config_dir" ]; then
- /usr/bin/certbot -n --agree-tos -m doy@tozt.net --nginx -d tozt.net -d blog.tozt.net -d paste.tozt.net -d git.tozt.net -d rss.tozt.net -d munin.tozt.net -d metabase.tozt.net
+ /usr/bin/certbot -n --agree-tos -m doy@tozt.net --nginx -d tozt.net -d blog.tozt.net -d paste.tozt.net -d git.tozt.net -d rss.tozt.net -d munin.tozt.net -d metabase.tozt.net -d rc-teleterm.tozt.net
else
- /usr/bin/certbot -n --agree-tos -m doy@tozt.net --nginx -d tozt.net -d blog.tozt.net -d paste.tozt.net -d git.tozt.net -d rss.tozt.net -d munin.tozt.net -d metabase.tozt.net --config-dir "$config_dir"
+ /usr/bin/certbot -n --agree-tos -m doy@tozt.net --nginx -d tozt.net -d blog.tozt.net -d paste.tozt.net -d git.tozt.net -d rss.tozt.net -d munin.tozt.net -d metabase.tozt.net -d rc-teleterm.tozt.net --config-dir "$config_dir"
fi