aboutsummaryrefslogtreecommitdiff
path: root/nginx-letsencrypt
diff options
context:
space:
mode:
Diffstat (limited to 'nginx-letsencrypt')
-rwxr-xr-xnginx-letsencrypt3
1 files changed, 0 insertions, 3 deletions
diff --git a/nginx-letsencrypt b/nginx-letsencrypt
index cb929c9..4bbb88d 100755
--- a/nginx-letsencrypt
+++ b/nginx-letsencrypt
@@ -12,8 +12,6 @@
# https://github.com/certbot/certbot/issues/3396
set -o errexit
-email="jakob@odersky.com"
-
extra_flags=()
if [ "$1" = --test ]; then
extra_flags+=("--test-cert")
@@ -51,7 +49,6 @@ mkdir --parents /var/www/letsencrypt
certbot certonly "${extra_flags[@]}" \
--noninteractive \
--agree-tos \
- --email "$email" \
--cert-name nginx \
--webroot --webroot-path /var/www/letsencrypt \
--pre-hook "sh -c '(openssl x509 -in /etc/letsencrypt/live/nginx/fullchain.pem -noout -text) | grep --quiet letsencrypt || rm -r /etc/letsencrypt/live/nginx'" \