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.

336 lines
12 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
  1. # An ACME Shell script: acme.sh
  2. - An ACME protocol client written purely in Shell (Unix shell) language.
  3. - Fully ACME protocol implementation.
  4. - Simple, powerful and very easy to use. You only need 3 minutes to learn.
  5. - Simplest shell script for Let's Encrypt free certificate client.
  6. - Purely written in Shell with no dependencies on python or Let's Encrypt official client.
  7. - Just one script, to issue, renew and install your certificates automatically.
  8. It's probably the `easiest&smallest&smartest` shell script to automatically issue & renew the free certificates from Let's Encrypt.
  9. DOES NOT require `root/sudoer` access.
  10. Wiki: https://github.com/Neilpang/acme.sh/wiki
  11. #Tested OS
  12. 1. Ubuntu [![](https://cdn.rawgit.com/Neilpang/letest/master/status/ubuntu-latest.svg)](https://github.com/Neilpang/letest#here-are-the-latest-status)
  13. 2. Debian [![](https://cdn.rawgit.com/Neilpang/letest/master/status/debian-latest.svg)](https://github.com/Neilpang/letest#here-are-the-latest-status)
  14. 3. CentOS [![](https://cdn.rawgit.com/Neilpang/letest/master/status/centos-latest.svg)](https://github.com/Neilpang/letest#here-are-the-latest-status)
  15. 4. Windows (cygwin with curl, openssl and crontab included) [![](https://cdn.rawgit.com/Neilpang/letest/master/status/windows.svg)](https://github.com/Neilpang/letest#here-are-the-latest-status)
  16. 5. FreeBSD [![](https://cdn.rawgit.com/Neilpang/letest/master/status/freebsd.svg)](https://github.com/Neilpang/letest#here-are-the-latest-status)
  17. 6. pfsense with curl
  18. 7. openSUSE [![](https://cdn.rawgit.com/Neilpang/letest/master/status/opensuse-latest.svg)](https://github.com/Neilpang/letest#here-are-the-latest-status)
  19. 8. Alpine Linux [![](https://cdn.rawgit.com/Neilpang/letest/master/status/alpine-latest.svg)](https://github.com/Neilpang/letest#here-are-the-latest-status) (with curl)
  20. 9. Archlinux [![](https://cdn.rawgit.com/Neilpang/letest/master/status/base-archlinux.svg)](https://github.com/Neilpang/letest#here-are-the-latest-status)
  21. 10. fedora [![](https://cdn.rawgit.com/Neilpang/letest/master/status/fedora-latest.svg)](https://github.com/Neilpang/letest#here-are-the-latest-status)
  22. 11. Kali Linux [![](https://cdn.rawgit.com/Neilpang/letest/master/status/kalilinux-kali-linux-docker.svg)](https://github.com/Neilpang/letest#here-are-the-latest-status)
  23. 12. Oracle Linux [![](https://cdn.rawgit.com/Neilpang/letest/master/status/oraclelinux-latest.svg)](https://github.com/Neilpang/letest#here-are-the-latest-status)
  24. 13. Cloud Linux https://github.com/Neilpang/le/issues/111
  25. 14. Proxmox https://pve.proxmox.com/wiki/HTTPSCertificateConfiguration#Let.27s_Encrypt_using_le.sh
  26. For all build statuses, check our [daily build project](https://github.com/Neilpang/acmetest):
  27. https://github.com/Neilpang/acmetest
  28. # Supported Mode
  29. 1. Webroot mode
  30. 2. Standalone mode
  31. 3. Apache mode
  32. 4. Dns mode
  33. # Upgrade from 1.x to 2.x
  34. You can simply uninstall 1.x and re-install 2.x.
  35. 2.x is 100% compatible to 1.x. You will feel right at home as if nothing has changed.
  36. # le.sh renamed to acme.sh NOW!
  37. All configurations are 100% compatible between `le.sh` and `acme.sh`. You just need to uninstall `le.sh` and re-install `acme.sh` again.
  38. Nothing will be broken during the process.
  39. # How to install
  40. ### 1. Install online:
  41. Check this project:https://github.com/Neilpang/get.acme.sh
  42. ```bash
  43. curl https://get.acme.sh | sh
  44. ```
  45. Or:
  46. ```bash
  47. wget -O - https://get.acme.sh | sh
  48. ```
  49. ### 2. Or, Install from git:
  50. Clone this project:
  51. ```bash
  52. git clone https://github.com/Neilpang/acme.sh.git
  53. cd ./acme.sh
  54. ./acme.sh --install
  55. ```
  56. You `don't have to be root` then, although `it is recommended`.
  57. The installer will perform 3 actions:
  58. 1. Create and copy `acme.sh` to your home dir (`$HOME`): `~/.acme.sh/`.
  59. All certs will be placed in this folder.
  60. 2. Create alia for: `acme.sh=~/.acme.sh/acme.sh`.
  61. 3. Create everyday cron job to check and renew the cert if needed.
  62. Cron entry example:
  63. ```bash
  64. 0 0 * * * "/home/user/.acme.sh"/acme.sh --cron --home "/home/user/.acme.sh" > /dev/null
  65. ```
  66. After the installation, you must close current terminal and reopen again to make the alias take effect.
  67. Ok, you are ready to issue cert now.
  68. Show help message:
  69. ```
  70. root@v1:~# acme.sh
  71. https://github.com/Neilpang/acme.sh
  72. v2.1.1
  73. Usage: acme.sh command ...[parameters]....
  74. Commands:
  75. --help, -h Show this help message.
  76. --version, -v Show version info.
  77. --install Install acme.sh to your system.
  78. --uninstall Uninstall acme.sh, and uninstall the cron job.
  79. --issue Issue a cert.
  80. --installcert Install the issued cert to apache/nginx or any other server.
  81. --renew, -r Renew a cert.
  82. --renewAll Renew all the certs
  83. --revoke Revoke a cert.
  84. --installcronjob Install the cron job to renew certs, you don't need to call this. The 'install' command can automatically install the cron job.
  85. --uninstallcronjob Uninstall the cron job. The 'uninstall' command can do this automatically.
  86. --cron Run cron job to renew all the certs.
  87. --toPkcs Export the certificate and key to a pfx file.
  88. --createAccountKey, -cak Create an account private key, professional use.
  89. --createDomainKey, -cdk Create an domain private key, professional use.
  90. --createCSR, -ccsr Create CSR , professional use.
  91. Parameters:
  92. --domain, -d domain.tld Specifies a domain, used to issue, renew or revoke etc.
  93. --force, -f Used to force to install or force to renew a cert immediately.
  94. --staging, --test Use staging server, just for test.
  95. --debug Output debug info.
  96. --webroot, -w /path/to/webroot Specifies the web root folder for web root mode.
  97. --standalone Use standalone mode.
  98. --apache Use apache mode.
  99. --dns [dns-cf|dns-dp|dns-cx|/path/to/api/file] Use dns mode or dns api.
  100. --keylength, -k [2048] Specifies the domain key length: 2048, 3072, 4096, 8192 or ec-256, ec-384.
  101. --accountkeylength, -ak [2048] Specifies the account key length.
  102. These parameters are to install the cert to nginx/apache or anyother server after issue/renew a cert:
  103. --certpath /path/to/real/cert/file After issue/renew, the cert will be copied to this path.
  104. --keypath /path/to/real/key/file After issue/renew, the key will be copied to this path.
  105. --capath /path/to/real/ca/file After issue/renew, the intermediate cert will be copied to this path.
  106. --fullchainpath /path/to/fullchain/file After issue/renew, the fullchain cert will be copied to this path.
  107. --reloadcmd "service nginx reload" After issue/renew, it's used to reload the server.
  108. --accountconf Specifies a customized account config file.
  109. --home Specifies the home dir for acme.sh .
  110. --certhome Specifies the home dir to save all the certs, only valid for '--install' command.
  111. --useragent Specifies the user agent string. it will be saved for future use too.
  112. --accountemail Specifies the account email for registering, Only valid for the '--install' command.
  113. --accountkey Specifies the account key path, Only valid for the '--install' command.
  114. --days Specifies the days to renew the cert when using '--issue' command. The max value is 80 days.
  115. ```
  116. # Just issue a cert:
  117. **Example 1:** Single domain.
  118. ```bash
  119. acme.sh --issue -d aa.com -w /home/wwwroot/aa.com
  120. ```
  121. **Example 2:** Multiple domains in the same cert.
  122. ```bash
  123. acme.sh --issue -d aa.com -d www.aa.com -d cp.aa.com -w /home/wwwroot/aa.com
  124. ```
  125. The parameter `/home/wwwroot/aa.com` is the web root folder. You **MUST** have `write access` to this folder.
  126. Second argument **"aa.com"** is the main domain you want to issue cert for.
  127. You must have at least a domain there.
  128. You must point and bind all the domains to the same webroot dir: `/home/wwwroot/aa.com`.
  129. Generate/issued certs will be placed in `~/.acme.sh/aa.com/`
  130. The issued cert will be renewed every 80 days automatically.
  131. More examples: https://github.com/Neilpang/acme.sh/wiki/How-to-issue-a-cert
  132. # Install issued cert to apache/nginx etc.
  133. After you issue a cert, you probably want to install the cert with your nginx/apache or other servers you may be using.
  134. ```bash
  135. acme.sh --installcert -d aa.com \
  136. --certpath /path/to/certfile/in/apache/nginx \
  137. --keypath /path/to/keyfile/in/apache/nginx \
  138. --capath /path/to/ca/certfile/apache/nginx \
  139. --fullchainpath path/to/fullchain/certfile/apache/nginx \
  140. --reloadcmd "service apache2|nginx reload"
  141. ```
  142. Only the domain is required, all the other parameters are optional.
  143. Install the issued cert/key to the production apache or nginx path.
  144. 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`.
  145. # Use Standalone server to issue cert
  146. **(requires you be root/sudoer, or you have permission to listen tcp 80 port)**
  147. Same usage as above, just give `no` as `--webroot` or `-w`.
  148. The tcp `80` port **MUST** be free to listen, otherwise you will be prompted to free the `80` port and try again.
  149. ```bash
  150. acme.sh --issue --standalone -d aa.com -d www.aa.com -d cp.aa.com
  151. ```
  152. More examples: https://github.com/Neilpang/acme.sh/wiki/How-to-issue-a-cert
  153. # Use Apache mode
  154. **(requires you be root/sudoer, since it is required to interact with apache server)**
  155. If you are running a web server, apache or nginx, it is recommended to use the `Webroot mode`.
  156. Particularly, if you are running an apache server, you should use apache mode instead. This mode doesn't write any files to your web root folder.
  157. Just set string "apache" as the second argument, it will force use of apache plugin automatically.
  158. ```
  159. acme.sh --issue --apache -d aa.com -d www.aa.com -d user.aa.com
  160. ```
  161. More examples: https://github.com/Neilpang/acme.sh/wiki/How-to-issue-a-cert
  162. # Use DNS mode:
  163. Support the `dns-01` challenge.
  164. ```bash
  165. acme.sh --issue --dns -d aa.com -d www.aa.com -d user.aa.com
  166. ```
  167. You should get the output like below:
  168. ```
  169. Add the following txt record:
  170. Domain:_acme-challenge.aa.com
  171. Txt value:9ihDbjYfTExAYeDs4DBUeuTo18KBzwvTEjUnSwd32-c
  172. Add the following txt record:
  173. Domain:_acme-challenge.www.aa.com
  174. Txt value:9ihDbjxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  175. Please add those txt records to the domains. Waiting for the dns to take effect.
  176. ```
  177. Then just rerun with `renew` argument:
  178. ```bash
  179. acme.sh --renew -d aa.com
  180. ```
  181. Ok, it's finished.
  182. # Automatic DNS API integration
  183. If your DNS provider supports API access, we can use API to automatically issue the certs.
  184. You don't have do anything manually!
  185. ### Currently acme.sh supports:
  186. 1. Cloudflare.com API
  187. 2. Dnspod.cn API
  188. 3. Cloudxns.com API
  189. 4. AWS Route 53, see: https://github.com/Neilpang/acme.sh/issues/65
  190. ##### More APIs are coming soon...
  191. If your DNS provider is not on the supported list above, you can write your own script API easily. If you do please consider submitting a [Pull Request](https://github.com/Neilpang/acme.sh/pulls) and contribute to the project.
  192. For more details: [How to use dns api](dnsapi)
  193. # Issue ECC certificate:
  194. `Let's Encrypt` now can issue **ECDSA** certificates.
  195. And we also support it.
  196. Just set the `length` parameter with a prefix `ec-`.
  197. For example:
  198. ### Single domain ECC cerfiticate:
  199. ```bash
  200. acme.sh --issue -w /home/wwwroot/aa.com -d aa.com --keylength ec-256
  201. ```
  202. SAN multi domain ECC certificate:
  203. ```bash
  204. acme.sh --issue -w /home/wwwroot/aa.com -d aa.com -d www.aa.com --keylength ec-256
  205. ```
  206. Please look at the last parameter above.
  207. Valid values are:
  208. 1. **ec-256 (prime256v1, "ECDSA P-256")**
  209. 2. **ec-384 (secp384r1, "ECDSA P-384")**
  210. 3. **ec-521 (secp521r1, "ECDSA P-521", which is not supported by Let's Encrypt yet.)**
  211. # Under the Hood
  212. Speak ACME language using shell, directly to "Let's Encrypt".
  213. TODO:
  214. # Acknowledgment
  215. 1. Acme-tiny: https://github.com/diafygi/acme-tiny
  216. 2. ACME protocol: https://github.com/ietf-wg-acme/acme
  217. 3. letsencrypt: https://github.com/letsencrypt/letsencrypt
  218. # License & Other
  219. License is GPLv3
  220. Please Star and Fork me.
  221. [Issues](https://github.com/Neilpang/acme.sh/issues) and [pull requests](https://github.com/Neilpang/acme.sh/pulls) are welcomed.