1 ./configure --prefix=/usr/local/nginx --with-openssl=/home/uniqs/thirdparty/openssl/openssl-1.1.1d --with-http_ssl_module 当然了要先把openssl编译安装,也可以PCRE/ ...
分类:
其他好文 时间:
2019-11-28 01:22:27
阅读次数:
85
首先抄个示例过来,命名为wss-test.html,然后传到服务器: http://www.xxx.com/wss-test.html 苹果手机访问正常 安卓手机访问失败 解决办法Nginx openssl x509 -in xxx_com.pem -out xxx_com.crt ...
分类:
移动开发 时间:
2018-11-05 12:23:23
阅读次数:
388
环境:centos6.5nginx:1.10openssl:1.0.1e-15测试样例一:web访问https协议的URLhttps://test.xx.com/demonginx开启证书配置,代理后端非安全协议的url,例如:http://xx.xx.com/xxserver{listen443;server_nametest.xxxx.com;sslon;ssl_certificate/etc/nginx/key_file/xxxx...
分类:
Web程序 时间:
2017-09-22 01:00:08
阅读次数:
271
环境:centos6.5nginx:1.10openssl:1.0.1e-15测试样例一:web访问https协议的URLhttps://test.xx.com/demonginx开启证书配置,代理后端非安全协议的url,例如:http://xx.xx.com/xxserver{listen443;server_nametest.xxxx.com;sslon;ssl_certificate/etc/nginx/key_file/xxxx...
分类:
Web程序 时间:
2017-09-21 23:31:40
阅读次数:
268
如题所示,报错信息如下:/bin/sh:line2:./config:Nosuchfileordirectory
make[1]:***[/usr/local/ssl/.openssl/include/openssl/ssl.h]Error127
make[1]:Leavingdirectory`/usr/local/src/nginx-1.9.9‘
make:***[build]Error2需要说明的是,我这里编译所使用的Nginx源码是1.9...
分类:
其他好文 时间:
2017-08-28 19:57:24
阅读次数:
172
微信小程序需要HTTPS服务。程序是NGINX做前段代理,现将NGINX设置HTTPS做个总结微信小程序需要HTTPS服务,并且有相关要求:开发通过https://www.qcloud.com/product/ssl#userDefined10检测SSL,显示之前配置的https未能通过。主要是算法和域名没通过。具体操作命令如下1先生成k..
分类:
微信 时间:
2017-04-28 16:09:25
阅读次数:
346
1.背景介绍:Nginx是一款高性能的HTTP和反向代理服务器,能够选择高效的epoll(linux2.6内核)、kqueue(freebsd)、eventport(solaris10)作为网络I/O模型,能够支持高达50000个并发连接数的响应,而内存、CPU等系统资源消耗却非常低、运行非常稳定。选择的理由:*支持高并发连接:..
分类:
其他好文 时间:
2017-03-17 13:34:52
阅读次数:
246
启用status模块【--with-http_stub_status_module】nginx安装完成之后,在后续的使用中发现需要的模块有些未安装,这时怎么办呢?到nginx的源码目录下,重新编译,但是不要makeinstall。具体步骤:#cd/home/nginx-1.6.3#./configure--prefix=/usr/local/nginx--with-openssl=/h..
分类:
其他好文 时间:
2017-01-16 23:19:17
阅读次数:
339