From 11b57580282df80b8e876e473874c007562f217e Mon Sep 17 00:00:00 2001 From: neil Date: Sat, 2 Apr 2016 00:27:33 +0800 Subject: [PATCH] Updated Home (markdown) --- Home.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/Home.md b/Home.md index 15d69660..20c4884e 100644 --- a/Home.md +++ b/Home.md @@ -2,3 +2,51 @@ Welcome to the le wiki! Here is the wiki page for le.sh + +1. How to install +Install online: +``` +curl https://raw.githubusercontent.com/Neilpang/le/master/le.sh | INSTALLONLINE=1 bash +``` +Or, +``` +wget -O - https://raw.githubusercontent.com/Neilpang/le/master/le.sh | INSTALLONLINE=1 bash +``` + +Install from git: +``` +git clone https://github.com/Neilpang/le.git +cd le +./le.sh install +``` + +If you want to use your email to register to LetsEncrypt, you can edit `~/.le/account.conf` +Uncomment and set `ACCOUNT_EMAIL` +``` +ACCOUNT_EMAIL=aaa@aaa.com +``` +Which is optional. If you don't want to register with your email, just ignore this step. + + + +2. How to use in Proxmox ? + +After installation, + +1) Issuer a cert: +``` +/root/.le/le.sh issue no +``` +After issuing, the cert will be automatically every 80 days. + +2) Install the cert to Proxmox: + +``` +/root/.le/le.sh installcert /etc/pve/local/pveproxy-ssl.pem /etc/pve/local/pveproxy-ssl.key /etc/pve/local/pveproxy-ssl.pem "systemctl restart pveproxy" +``` + +Ok, it's done. Open the link: `https://:8006` + + + +