OpenWRT开启https访问

1.申请证书

2.下载NGINX格式的证书

3.在openwrt中安装uhttpd插件

# 安装 OpenSSL 服务

opkg update

opkg install luci-ssl-openssl libuhttpd-openssl

# 提示错误强制安装

opkg update

opkg install --force-reinstall libustream-openssl openssl-util

4.修改uhttpd文件

vi /etc/config/uhttpd

标红的为证书文件的存储位置

可以根据自己的需要更改

将下载的证书文件

*.pem 修改为uhttpd.crt

*.key 修改为uhttpd.key

上传到上图所示的目录下面

将上图uhttpd文件中的

option redirect_https '1'

强制跳转到 https

5.完成之后重启openwrt

reboot -f

完成修改

6.如图所示访问openwrt时浏览器显示安全的连接

 

THE END
分享
二维码
海报
OpenWRT开启https访问
1.申请证书 2.下载NGINX格式的证书 3.在openwrt中安装uhttpd插件 # 安装 OpenSSL 服务 opkg update opkg install luci-ssl-openssl libuhttpd-openssl # 提示……