Updated Home (markdown)

neil 2016-04-10 00:00:20 +08:00
parent 2dd84794b1
commit 5c597613bc
1 changed files with 3 additions and 3 deletions

@ -35,14 +35,14 @@ After installation,
1) Issuer a cert: 1) Issuer a cert:
``` ```
/root/.le/le.sh issue no <DOMAIN> /root/.le/le.sh --issue --standalone -d <DOMAIN>
``` ```
After issuing, the cert will be automatically every 80 days. After issuing, the cert will be automatically every 80 days.
2) Install the cert to Proxmox: 2) Install the cert to Proxmox:
``` ```
/root/.le/le.sh installcert <DOMAIN> /etc/pve/local/pveproxy-ssl.pem /etc/pve/local/pveproxy-ssl.key /etc/pve/local/pveproxy-ssl.pem "systemctl restart pveproxy" /root/.le/le.sh --installcert -d <DOMAIN> --certpath /etc/pve/local/pveproxy-ssl.pem --keypath /etc/pve/local/pveproxy-ssl.key --capath /etc/pve/local/pveproxy-ssl.pem --reloadcmd "systemctl restart pveproxy"
``` ```
Ok, it's done. Open the link: `https://<DOMAIN>:8006` Ok, it's done. Open the link: `https://<DOMAIN>:8006`
@ -52,7 +52,7 @@ Ok, it's done. Open the link: `https://<DOMAIN>:8006`
After you issue the cert, then you can use `toPkcs` command to convert the cert to pkcs12(pfx) format After you issue the cert, then you can use `toPkcs` command to convert the cert to pkcs12(pfx) format
``` ```
le.sh toPkcs <domain> [pfx-password] le.sh --toPkcs -d <domain> [--password pfx-password]
``` ```
## 4. How to run on Windows with Cygwin. ## 4. How to run on Windows with Cygwin.