From 0dd7ed6a996979af7caa36f7a74e2da11b15abd5 Mon Sep 17 00:00:00 2001 From: Nicolas MASSE Date: Sat, 28 Mar 2020 10:09:23 +0100 Subject: [PATCH] minor changes --- content/blog/nginx-with-tls-on-openwrt.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/blog/nginx-with-tls-on-openwrt.md b/content/blog/nginx-with-tls-on-openwrt.md index d1a6712..413ef19 100644 --- a/content/blog/nginx-with-tls-on-openwrt.md +++ b/content/blog/nginx-with-tls-on-openwrt.md @@ -127,8 +127,8 @@ Declare the local opkg repository in **customfeeds.conf**. ```sh cat > /etc/opkg/customfeeds.conf <<"EOF" -src/gz base file:///opt/opkg/base/ -src/gz packages file:///opt/opkg/packages/ +src/gz base file:/opt/opkg/base +src/gz packages file:/opt/opkg/packages EOF ``` @@ -147,8 +147,8 @@ scp key-build.pub root@raspberry-pi.example.test:/etc/opkg/keys/$(staging_dir/ho Install *nginx-tls* on your device. ```sh -ssh root@raspberry-pi.example.test opkg update -ssh root@raspberry-pi.example.test opkg install nginx-tls +opkg update +opkg install nginx-tls libopenssl zlib ``` **Note:** if [like me](https://forum.openwrt.org/t/the-usign-command-does-not-validate-a-signature-in-some-cases/58679) you have issues with the packages signature being rejected, you can disable temporarily the signature validation in **/opt/opkg.conf** by commenting out **option check_signature**.