From 61b9e8a5dc79bf7a7d30dea5cdd5cc548b1385ba Mon Sep 17 00:00:00 2001 From: Thomas Hollstegge Date: Mon, 19 Mar 2018 10:45:44 +0100 Subject: [PATCH] Fix some errors encountered on the latest stable LEDE release --- How-to-run-on-OpenWRT.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/How-to-run-on-OpenWRT.md b/How-to-run-on-OpenWRT.md index 0303514..539206b 100644 --- a/How-to-run-on-OpenWRT.md +++ b/How-to-run-on-OpenWRT.md @@ -26,12 +26,12 @@ uci set firewall.https.proto=tcp uci set firewall.https.dest_port=443 uci set firewall.https.name='web configuration' ##add http firewall rule -uci set firewall.https=rule -uci set firewall.https.target=ACCEPT -uci set firewall.https.src=wan -uci set firewall.https.proto=tcp -uci set firewall.https.dest_port=80 -uci set firewall.https.name='http web configuration' +uci set firewall.http=rule +uci set firewall.http.target=ACCEPT +uci set firewall.http.src=wan +uci set firewall.http.proto=tcp +uci set firewall.http.dest_port=80 +uci set firewall.http.name='http web configuration' uci commit /etc/init.d/firewall restart /etc/init.d/uhttpd restart @@ -54,7 +54,7 @@ Now if the certificate issue was successful we'll tell the web server to use our ``` uci set uhttpd.main.key="$(pwd)/$DOMAIN/$DOMAIN.key" -uci set uhttpd.main.cert="$(pwd)/$DOMAIN/$DOMAIN.cert" +uci set uhttpd.main.cert="$(pwd)/$DOMAIN/$DOMAIN.cer" uci commit uhttpd /etc/init.d/uhttpd restart ```