-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
www: letsencrypt --manual doesn't allow auto-renew, use --nginx
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ sudo add-apt-repository ppa:certbot/certbot | |
sudo apt-get update | ||
sudo apt-get install python-certbot-nginx | ||
mkdir -p /home/libuv/www/.well-known/acme-challenge/ | ||
certbot --manual certonly -d dist.libuv.org -m [email protected] | ||
certbot --nginx certonly -d dist.libuv.org -m [email protected] --agree-tos | ||
# take the CODE and the FILE and insert into the following command: | ||
echo "CODE" > /home/libuv/www/.well-known/acme-challenge/FILE | ||
``` | ||
|