Skip to content

Instantly share code, notes, and snippets.

@shaposhnikoff
Last active December 20, 2016 17:35
Show Gist options
  • Save shaposhnikoff/61538b67cdc8da9c60abc6407ef71b68 to your computer and use it in GitHub Desktop.
Save shaposhnikoff/61538b67cdc8da9c60abc6407ef71b68 to your computer and use it in GitHub Desktop.
letsencrypt
sudo docker run --rm --publish 80:80 --publish 443:443 --name letsencrypt \
--volume "/tmp/letsencrypt/etc/:/etc/letsencrypt" \
--volume "/tmp/letsencrypt/var/:/var/lib/letsencrypt" \
quay.io/letsencrypt/letsencrypt:latest certonly --standalone \
-d domain.name -d www.domain.name --agree-tos --email [email protected]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment