23 lines
690 B
Bash
23 lines
690 B
Bash
#!/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"
|
|
|
|
# Uncomment and list your 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 \
|
|
# )
|