New sequence certbot for install and update of certificates
This commit is contained in:
22
seqs/certbot.cfg.example
Normal file
22
seqs/certbot.cfg.example
Normal 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 \
|
||||
)
|
Reference in New Issue
Block a user