如何删除openwrt ssl证书

如何删除openwrt ssl证书

我按照以下步骤在 openwrt 上启用了 HTTPS如何不久前。

现在我在 Firefox 中收到证书警告,因为它已过期。如何删除旧证书?

答案1

在 openwrt 盒子上打开 shell 并运行以下命令:

$ cd /etc
$ rm uhttpd.crt uhttpd.key
$ /etc/init.d/uhttpd restart

通过查看uhttpd命令行发现:

cat /proc/$(pgrep uhttpd)/cmdline | tr '\0' ' ' && echo

结果:

/usr/sbin/uhttpd -f -h /www -r mortar.carrier.duckdns.org -x /cgi-bin -u /ubus -t 60 -T 30 -k 20 -A 1 -n 3 -N 100 - R -C /etc/uhttpd.crt -K /etc/uhttpd.key -s 0.0.0.0:443 -s [::]:443

相关内容