New sequence certbot for install and update of certificates

This commit is contained in:
2019-12-13 23:48:06 +01:00
parent 91f9f8a8da
commit bc5d30f400
2 changed files with 108 additions and 0 deletions

22
seqs/certbot.cfg.example Normal file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
# Web root path where certbot will place the ACME challenge files
#
# A nginx example location which needs to placed in the server config listening on port 80
# for the first time and also in the config listeing on port 443 for renewals:
#
# location ^~ /.well-known/acme-challenge/ {
# default_type "text/plain";
# root /var/www/letsencrypt;
# }
CERTBOT_WEBROOT="/var/www/letsencrypt"
# Email address for important account notifications
CERTBOT_MAIL="postmaster@mydomain.eu"
# List you domains here.
# The first will be the subject CN and all other will be listed as Subject Alternative Names.
CERTBOT_DOMAINS=(\
mydomain.eu \
www.mydomain.eu \
)