Skip to content

Commit

Permalink
GH4 Temporary Certbot Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-samot committed Mar 21, 2018
1 parent 79c820f commit 3343b89
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cert.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ DOMAIN="example.com"

if [ ! -f /firstcertgen ]; then
touch /firstcertgen
certbot --apache --noninteractive --rsa-key-size 4096 --agree-tos --register-unsafely-without-email --redirect --hsts --uir -d "${DOMAIN}"
# certbot --apache --noninteractive --rsa-key-size 4096 --agree-tos --register-unsafely-without-email --redirect --hsts --uir -d "${DOMAIN}"
certbot --authenticator webroot --installer apache --noninteractive --rsa-key-size 4096 --agree-tos --register-unsafely-without-email --redirect --hsts --uir -d "${DOMAIN}"
else
echo "File found! /firstcertgen"
fi

0 comments on commit 3343b89

Please sign in to comment.