From 1f5557eeeae7a0d8dbab78228da13a357ee40880 Mon Sep 17 00:00:00 2001 From: Denix Date: Sun, 27 Aug 2017 13:05:00 +0200 Subject: [PATCH] openssl-tools is another required package to get the certificate. also, we should run ./acme --install to avoid the "Only RSA or EC key is supported" error --- How-to-run-on-OpenWRT.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/How-to-run-on-OpenWRT.md b/How-to-run-on-OpenWRT.md index c9b766f..f2c22cf 100644 --- a/How-to-run-on-OpenWRT.md +++ b/How-to-run-on-OpenWRT.md @@ -4,7 +4,7 @@ Setup and run acme.sh on your OpenWRT router and have https secured management. ### Step 1: Install packages -`opkg install curl ca-certificates uhttpd-mod-tls` +`opkg install curl ca-certificates uhttpd-mod-tls openssl-util` On LEDE 17.01.2 you will need @@ -44,6 +44,7 @@ On your router: mkdir ~/.https curl https://raw.githubusercontent.com/Neilpang/acme.sh/master/acme.sh > acme.sh chmod a+x "acme.sh" +./acme.sh --install DOMAIN=my.router.net ## this domain must actually point to your router ./acme.sh --issue -d $DOMAIN -w /www ```