ssl_certificate_key /etc/nginx/conf.d/_lan.key; #ssl证书相关 ssl_session_cache shared:SSL:32k; #ssl证书相关 ssl_session_timeout 64m; #ssl证书相关 access_log off; # logd openwrt; #关闭日志 } 注意路径问题,我就这里卡了1小时。 在openwrt的nginx中,默认配置文件是:/etc/nginx/uci.conf 在...
一:安装nginx# opkg update && opkg install nginx-ssl 二:uci命令基础# Usage: uci [<options>] [<arguments>] Commands: batch export [<config>] import [<config>] changes [<config>] commit [<config>] add<config> add_list<config>..=<string>del_list<config>..=<string>show [<config>[....
我添加的k2p的https配置:./config/k2p.conf,如下: server{listen443ssl;server_name k2p.***.com;ssl_certificate./ssl/k2p/***.pem; ssl_certificate_key ./ssl/k2p/***.key; ssl_session_cache shared:SSL:1m; ssl_session_timeout 5m; ssl_ciphers HIGH:!aNULL:!MD5; ssl_prefer_server_cipher...
通常,你需要安装nginx和nginx-ssl包,后者包含SSL支持。 bash opkg install nginx nginx-ssl 配置Nginx: 安装完成后,Nginx的默认配置文件通常位于/etc/nginx/nginx.conf。你可以使用你喜欢的文本编辑器(如vi或nano)来编辑这个文件,以根据你的需求进行配置。例如,使用vi编辑Nginx配置文件: bash vi /etc/nginx/nginx...
1.修改nginx配置文件,把/etc/config/nginx文件内容调整为: config main 'global' option uci_enable 'true' config server 'mynas_cf' list listen '8880 ssl' #监听IPv4端口 list listen '[::]:8880 ssl' #监听IPv6端口 option server_name 'mypve.xxx.com' #指向的域名 ...
# opkg install nginx-all-module # opkg install nginx-ssl 安装完成后,执行nginx -t来检测是否安装成功: root@OpenWrt:/etc# nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful ...
于是就想着通过二级域名+ssl来访问,这样就不用端口了。 在恩山找了很多,很多都是接近15.35M(刷完不死breed就剩这么多了吧),试了很多都没空间装nginx,当然也有7-10M之间的,但是安装nginx的时候都提示没有缺少组件libstdcpp(应该是编译的时候没加进去),期间都想着 弄台虚拟机自己去编译了,但是还是耐着性子找了...
proxy_ssl_server_name on; proxy_ssl_name hello.world; proxy_pass VPS IP:5678; #(特别注意:这里最好使用IP,如果一定要使用域名, #必须在本机hosts文件中指定域名对应的IP,因为NGINX是静态联编的。 #使用域名后会出现路由器重启后nginx不会启动,需要手动启动). ...
###默认你已经完成 域名申请,配置DDNS 和 申请ssl证书的操作。 修改UCI控件 OP把uci配置加于nginx的配置之上,所以第一步先关闭uci的配置管理。 其实第三篇参考文章(官方文档)已经讲的很清楚了,如果你需要简单的管理nginx,用uci就够了,需要自己配置nginx的就关闭uci管理。 那...
创建配置文件:/etc/nginx/conf.d/base.conf 不要想改uci.conf,改不了的。 实际使用,你应该复制uci.conf当中 server一整段,过来。 然后修改location以外的东西。 具体我用的如下: server { listen443ssl ; listen [::]:443ssl ; include restrict_locally; ...