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.

254 lines
6.7 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
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: means simp`Le`
  2. Simplest shell script for LetsEncrypt free Certificate client
  3. Simple and Powerful, you only need 3 minutes to learn.
  4. Pure written in bash, no dependencies to python, acme-tiny or LetsEncrypt official client.
  5. Just one script, to issue, renew your certificates automatically.
  6. Probably it's the smallest&easiest&smartest shell script to automatically issue & renew the free certificates from LetsEncrypt.
  7. Do NOT require to be `root/sudoer`.
  8. #Tested OS
  9. 1. Ubuntu/Debian.
  10. 2. CentOS 5, 6, 7
  11. 3. Windows (cygwin with curl, openssl and crontab included)
  12. 4. FreeBSD with bash
  13. 5. pfsense with bash and curl
  14. 6. openSUSE 13
  15. 7. Alpine Linux (with bash, curl. https://github.com/Neilpang/le/issues/94)
  16. 8. Archlinux
  17. If anyone want to test le on your system, you can simply run our test project: https://github.com/Neilpang/letest
  18. #Supported Mode
  19. 1. Webroot mode
  20. 2. Standalone mode
  21. 3. Apache mode
  22. 4. Dns mode
  23. #How to use
  24. 1. Clone this project: https://github.com/Neilpang/le.git
  25. 2. Install le:
  26. ```
  27. ./le.sh install
  28. ```
  29. You don't have to be root then, although it is recommended.
  30. Which does 3 jobs:
  31. * create and copy `le.sh` to your home dir: `~/.le`
  32. All the certs will be placed in this folder.
  33. * create alias : `le.sh=~/.le/le.sh` and `le=~/.le/le.sh`.
  34. * create everyday cron job to check and renew the cert if needed.
  35. After install, you must close current terminal and reopen again to make the alias take effect.
  36. Ok, you are ready to issue cert now.
  37. Show help message:
  38. ```
  39. root@v1:~# le.sh
  40. https://github.com/Neilpang/le
  41. v1.1.1
  42. Usage: le.sh [command] ...[args]....
  43. Available commands:
  44. install:
  45. Install le.sh to your system.
  46. issue:
  47. Issue a cert.
  48. installcert:
  49. Install the issued cert to apache/nginx or any other server.
  50. renew:
  51. Renew a cert.
  52. renewAll:
  53. Renew all the certs.
  54. uninstall:
  55. Uninstall le.sh, and uninstall the cron job.
  56. version:
  57. Show version info.
  58. installcronjob:
  59. Install the cron job to renew certs, you don't need to call this. The 'install' command can automatically install the cron job.
  60. uninstallcronjob:
  61. Uninstall the cron job. The 'uninstall' command can do this automatically.
  62. createAccountKey:
  63. Create an account private key, professional use.
  64. createDomainKey:
  65. Create an domain private key, professional use.
  66. createCSR:
  67. Create CSR , professional use.
  68. root@v1:~/le# le issue
  69. Usage: le issue webroot|no|apache|dns a.com [www.a.com,b.com,c.com]|no [key-length]|no
  70. ```
  71. Set the param value to "no" means you want to ignore it.
  72. For example, if you give "no" to "key-length", it will use default length 2048.
  73. And if you give 'no' to 'cert-file-path', it will not copy the issued cert to the "cert-file-path".
  74. In all the cases, the issued cert will be placed in "~/.le/domain.com/"
  75. # Just issue a cert:
  76. Example 1:
  77. Only one domain:
  78. ```
  79. le issue /home/wwwroot/aa.com aa.com
  80. ```
  81. Example 2:
  82. Multiple domains in the same cert:
  83. ```
  84. le issue /home/wwwroot/aa.com aa.com www.aa.com,cp.aa.com
  85. ```
  86. First argument `/home/wwwroot/aa.com` is the web root folder, You must have `write` access to this folder.
  87. Second argument "aa.com" is the main domain you want to issue cert for.
  88. Third argument is the additional domain list you want to use. Comma separated list, which is Optional.
  89. You must point and bind all the domains to the same webroot dir:`/home/wwwroot/aa.com`
  90. The cert will be placed in `~/.le/aa.com/`
  91. The issued cert will be renewed every 80 days automatically.
  92. # Install issued cert to apache/nginx etc.
  93. ```
  94. le installcert aa.com /path/to/certfile/in/apache/nginx /path/to/keyfile/in/apache/nginx /path/to/ca/certfile/apache/nginx "service apache2|nginx reload"
  95. ```
  96. Install the issued cert/key to the production apache or nginx path.
  97. The cert will be renewed every 80 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`
  98. # Use Standalone server to issue cert (requires you be root/sudoer, or you have permission to listen tcp 80 port):
  99. Same usage as all above, just give `no` as the webroot.
  100. The tcp `80` port must be free to listen, otherwise you will be prompted to free the `80` port and try again.
  101. ```
  102. le issue no aa.com www.aa.com,cp.aa.com
  103. ```
  104. # Use Apache mode (requires you be root/sudoer, since it is required to interact with apache server):
  105. If you are running a web server, apache or nginx, it is recommended to use the Webroot mode.
  106. 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.
  107. Just set string "apache" to the first argument, it will use apache plugin automatically.
  108. ```
  109. le issue apache aa.com www.aa.com,user.aa.com
  110. ```
  111. All the other arguments are the same with previous.
  112. # Use DNS mode:
  113. Support the latest dns-01 challenge.
  114. ```
  115. le issue dns aa.com www.aa.com,user.aa.com
  116. ```
  117. You will get the output like bellow:
  118. ```
  119. Add the following txt record:
  120. Domain:_acme-challenge.aa.com
  121. Txt value:9ihDbjYfTExAYeDs4DBUeuTo18KBzwvTEjUnSwd32-c
  122. Add the following txt record:
  123. Domain:_acme-challenge.www.aa.com
  124. Txt value:9ihDbjxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  125. ```
  126. Please add those txt records to the domains. Waiting for the dns to take effect.
  127. Then just retry with 'renew' command:
  128. ```
  129. le renew aa.com
  130. ```
  131. Ok, it's finished.
  132. #Automatic dns api integeration
  133. If your dns provider supports api access, we can use api to automatically issue certs.
  134. You don't have do anything manually.
  135. ###Currently we support:
  136. 1. Cloudflare.com api
  137. 2. Dnspod.cn api
  138. 3. Cloudxns.com api
  139. 4. AWS Route 53, see: https://github.com/Neilpang/le/issues/65
  140. More apis are coming soon....
  141. If your dns provider is not in the supported list above, you can write your own script api easily.
  142. For more details: [How to use dns api](dnsapi)
  143. # Issue ECC certificate:
  144. LetsEncrypt now can issue ECDSA certificate.
  145. And we also support it.
  146. Just set the `length` parameter with a prefix `ec-`.
  147. For example:
  148. Single domain:
  149. ```
  150. le issue /home/wwwroot/aa.com aa.com no ec-256
  151. ```
  152. SAN multiple domains:
  153. ```
  154. le issue /home/wwwroot/aa.com aa.com www.aa.com,cp.aa.com ec-256
  155. ```
  156. Please look at the last parameter above.
  157. Valid values are:
  158. 1. ec-256 (prime256v1, "ECDSA P-256")
  159. 2. ec-384 (secp384r1, "ECDSA P-384")
  160. 3. ec-521 (secp521r1, "ECDSA P-521", which is not supported by letsencrypt yet.)
  161. #Under the Hood
  162. Speak ACME language with bash directly to Let's encrypt.
  163. TODO:
  164. #Acknowledgment
  165. 1. Acme-tiny: https://github.com/diafygi/acme-tiny
  166. 2. ACME protocol: https://github.com/ietf-wg-acme/acme
  167. 3. letsencrypt: https://github.com/letsencrypt/letsencrypt
  168. #License & Other
  169. License is GPLv3
  170. Please Star and Fork me.
  171. Issues and pull requests are welcomed.