You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

161 lines
4.3 KiB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  1. # le
  2. Simplest shell script for LetsEncrypt free Certificate client
  3. Pure written in bash, no dependencies to python , acme-tiny or LetsEncrypt official client (https://github.com/letsencrypt/letsencrypt)
  4. Just one script, to issue, renew your certificates automatically.
  5. Probably it's the smallest&easiest&smartest shell script to automatically issue&renew the free certificates from LetsEncrypt.
  6. #Supported OS
  7. 1. Ubuntu/Debian.
  8. 2. CentOS
  9. #Supported Mode
  10. 1. Webroot mode
  11. 2. Standalone mode
  12. 3. Apache mode
  13. 4. Dns mode
  14. #How to use
  15. 1. Clone this project: https://github.com/Neilpang/le.git
  16. 2. Install le:
  17. ```
  18. ./le.sh install
  19. ```
  20. Which does 3 jobs:
  21. * create and copy `le.sh` to your home dir: `~/.le`
  22. All the certs will be placed in this folder.
  23. * create symbol link: `/bin/le -> ~/.le/le.sh`
  24. * create everyday cron job to check and renew the cert if needed.
  25. Ok, you are ready to issue cert now.
  26. Show help message:
  27. ```
  28. root@xvm:~# le
  29. Usage: issue|renew|renewAll|createAccountKey|createDomainKey|createCSR|install|uninstall
  30. root@xvm:~# le issue
  31. Usage: le issue webroot|no|apache|dns a.com [www.a.com,b.com,c.com]|no [key-length]|no [cert-file-path]|no [key-file-path]|no [ca-cert-file-path]|no [reloadCmd]|no
  32. ```
  33. Set the param value to "no" means you want to ignore it.
  34. For example, if you give "no" to "key-length", it will use default length 2048.
  35. And if you give 'no' to 'cert-file-path', it will not copy the issued cert to the "cert-file-path".
  36. In all the cases, the issued cert will be placed in "~/.le/domain.com/"
  37. # Just issue a cert:
  38. ```
  39. le issue /home/wwwroot/aa.com aa.com www.aa.com,cp.aa.com
  40. ```
  41. First argument `/home/wwwroot/aa.com` is the web root folder, You must have `write` access to this folder.
  42. Second argument "aa.com" is the main domain you want to issue cert for.
  43. Third argument is the additional domain list you want to use. Comma separated list, which is Optional.
  44. You must point and bind all the domains to the same webroot dir:`/home/wwwroot/aa.com`
  45. The cert will be placed in `~/.le/aa.com/`
  46. The issued cert will be renewed every 50 days automatically.
  47. # Issue a cert, and install to apache/nginx
  48. ```
  49. le issue /home/wwwroot/aa.com aa.com www.aa.com,cp.aa.com 2048 /path/to/certfile/in/apache/nginx /path/to/keyfile/in/apache/nginx /path/to/ca/certfile/apahce/nginx "service apache2/nginx reload"
  50. ```
  51. Which issues the cert and then links it to the production apache or nginx path.
  52. The cert will be renewed every 50 days by default (which is configurable), Once the cert is renewed, the apache/nginx will be automatically reloaded by the command: ` service apache2 reload` or `service nginx reload`
  53. # Use Standalone server:
  54. Same usage as all above, just give `no` as the webroot.
  55. The tcp `80` port must be free to listen, otherwise you will be prompted to free the `80` port and try again.
  56. ```
  57. le issue no aa.com www.aa.com,cp.aa.com
  58. ```
  59. # Use Apache mode:
  60. If you are running a web server, apache or nginx, it is recommended to use the Webroot mode.
  61. Particularly, if you are running an apache server, you can use apache mode instead. Which doesn't write any file to your web root folder.
  62. Just set string "apache" to the first argument, it will use apache plugin automatically.
  63. ```
  64. le issue apache aa.com www.aa.com
  65. ```
  66. All the other arguments are the same with previous.
  67. # Use DNS mode:
  68. Support the latest dns-01 challenge.
  69. ```
  70. le issue dns aa.com www.aa.com
  71. ```
  72. Use domain api to automatically add dns record is not finished yet.
  73. So, you must manually add the txt record to finish verifying.
  74. You will get the output like bellow:
  75. ```
  76. Add the following txt record:
  77. Domain:_acme-challenge.aa.com
  78. Txt value:9ihDbjYfTExAYeDs4DBUeuTo18KBzwvTEjUnSwd32-c
  79. Add the following txt record:
  80. Domain:_acme-challenge.www.aa.com
  81. Txt value:9ihDbjxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  82. ```
  83. Please add those txt records to the domains. Waiting for the dns to take effect.
  84. Then just retry with 'renew' command:
  85. ```
  86. le renew aa.com
  87. ```
  88. Ok, it's finished.
  89. #Under the Hood
  90. Speak ACME language with bash directly to Let's encrypt.
  91. TODO:
  92. #Acknowledgment
  93. 1. Acme-tiny: https://github.com/diafygi/acme-tiny
  94. 2. ACME protocol: https://github.com/ietf-wg-acme/acme
  95. 3. letsencrypt: https://github.com/letsencrypt/letsencrypt
  96. #License & Other
  97. License is GPLv3
  98. Please Star and Fork me.
  99. Issues and pullrequests are welcomed.