Guest User

Untitled

a guest
Mar 24th, 2018
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 KB | None | 0 0
  1. PS C:Userstest> docker run -it --rm -p 80:80 --name certbot -v "C:Docker/LetsEncrypt/etc/letsencrypt:/etc/letsencrypt" -v "C:Docker/LetsEncrypt/var/lib/letsencrypt:/var/lib/letsencrypt" -v "C:Docker/LetsEncrypt/var/log/letsencrypt:/var/log/letsencrypt" quay.io/letsencrypt/letsencrypt:latest certonly --standalone --standalone-supported-challenges http-01 --email myemail@mail.com -d mysite.duckdns.org
  2.  
  3. Warning: This Docker image will soon be switching to Alpine Linux.
  4. You can switch now using the certbot/certbot repo on Docker Hub.
  5. The standalone specific supported challenges flag is deprecated. Please use the --preferred-challenges flag instead.
  6. Saving debug log to /var/log/letsencrypt/letsencrypt.log
  7. Plugins selected: Authenticator standalone, Installer None
  8. /opt/certbot/venv/local/lib/python2.7/site-packages/josepy/jwa.py:107: CryptographyDeprecationWarning: signer and verifier have been deprecated. Please use sign and verify instead.
  9. signer = key.signer(self.padding, self.hash)
  10.  
  11. -------------------------------------------------------------------------------
  12. Please read the Terms of Service at
  13. https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf. You must
  14. agree in order to register with the ACME server at
  15. https://acme-v01.api.letsencrypt.org/directory
  16. -------------------------------------------------------------------------------
  17. (A)gree/(C)ancel: a
  18.  
  19. -------------------------------------------------------------------------------
  20. Would you be willing to share your email address with the Electronic Frontier
  21. Foundation, a founding partner of the Let's Encrypt project and the non-profit
  22. organization that develops Certbot? We'd like to send you email about EFF and
  23. our work to encrypt the web, protect its users and defend digital rights.
  24. -------------------------------------------------------------------------------
  25. (Y)es/(N)o: y
  26. Obtaining a new certificate
  27. Performing the following challenges:
  28. http-01 challenge for mysite.duckdns.org
  29. Waiting for verification...
  30. Cleaning up challenges
  31.  
  32. IMPORTANT NOTES:
  33. - Congratulations! Your certificate and chain have been saved at:
  34. /etc/letsencrypt/live/mysite.duckdns.org/fullchain.pem
  35. Your key file has been saved at:
  36. /etc/letsencrypt/live/mysite.duckdns.org/privkey.pem
  37. Your cert will expire on 2018-06-22. To obtain a new or tweaked
  38. version of this certificate in the future, simply run certbot
  39. again. To non-interactively renew *all* of your certificates, run
  40. "certbot renew"
  41. - Your account credentials have been saved in your Certbot
  42. configuration directory at /etc/letsencrypt. You should make a
  43. secure backup of this folder now. This configuration directory will
  44. also contain certificates and private keys obtained by Certbot so
  45. making regular backups of this folder is ideal.
  46. - If you like Certbot, please consider supporting our work by:
  47.  
  48. Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate
  49. Donating to EFF: https://eff.org/donate-le
Add Comment
Please, Sign In to add comment