
nginx
溯缔
这个作者很懒,什么都没留下…
展开
-
Nginx重新编译添加模块
找到安装nginx的源码根目录,如果没有的话下载新的源码http://nginx.orgtar xvzf nginx-1.3.2.tar.gz查看nginx版本极其编译参数/usr/local/nginx/sbin/nginx -V进入nginx源码目录cd nginx-1.3.2以下是重新编译的代码和模块./configure –prefix=/usr/local...转载 2018-03-18 14:36:45 · 581 阅读 · 0 评论 -
centOS7访问nginx失败解决-.0:80 failed (98: Address already in use)解决
前提:已经配置好静态IP 以防万一,先安装好iptables服务(不管你装没装,先执行,免得后面添乱) [root@localhost ~]# yum install iptables-services [root@localhost ~]# systemctl mask firewalld.service [root@localhost ~]# systemctl enable ipta...转载 2018-03-18 16:08:54 · 1395 阅读 · 0 评论 -
nginx: [alert] kill(1668, 1) failed (3: No such process)的解决办法及nginx常用命令总结
【问题描述】更改完nginx.conf文件后,执行/application/nginx/sbin/nginx -s reload命令重新加载配置文件,报以下错误信息:nginx: [alert] kill(1668, 1) failed (3: No such process)提示没有相关进程。【解决】其实这个问题很低级的说,就是我之前压根就没有启动nginx服务,执行/app...转载 2018-03-18 16:11:27 · 28176 阅读 · 0 评论 -
./configure: error: SSL modules require the OpenSSL library.
CentOS 6.5 下 安装 Tengine 执行配置命令./configure 时提示以下错误:./configure: error: SSL modules require the OpenSSL library. You can either do not enable the modules, or install the OpenSSL library into the...转载 2018-03-18 16:15:08 · 3058 阅读 · 0 评论 -
Linux下,Nginx的安装、升级及动态添加模块
转载文链接(PS:个人认为视觉效果好) 原文链接 Nginx服务器的编译安装与配置原创 2018-03-18 16:33:04 · 751 阅读 · 0 评论 -
Tomcat配置 https SSL证书
原文链接 公司网站链接要由原来的http超文本传输协议访问改为https SSl加密传输协议访问。—>HTTP与HTTPS的区别:HTTP协议传输的数据都是未加密的,也就是明文的,因此使用HTTP协议传输隐私信息非常不安全,为了保证这些隐私数据能加密传输,于是网景公司设计了SSL(Secure Sockets Layer)协议用于对HTTP协议传输的数据进行加密,从而就诞生了HTTPS...转载 2018-03-19 19:43:00 · 215 阅读 · 0 评论