• nginx-openresty-windows v1.11.9.1001 更新

    日期:

    nginx-openresty-windows v1.11.9.1001 发布了。 版本号:1.11.9.1001 32位下载地址: http://pan.baidu.com/s/1pLczj3H 64位下载地址: http://pan.baidu.com/s/1ciVqkY 发布时间:2017-02-06 修改日志: Nginx: 更新nginxcore到版本1.11.9 更新pcre到版本8.40...

  • nginx全局变量

    日期:

    经常需要配置Nginx ,其中有许多以 $ 开头的变量,经常需要查阅nginx 所支持的变量。Nginx支持的http变量实现在 ngx_http_variables.c 的 ngx_http_core_variables存储实现: ngx_http_core_variables static ngx_http_variable_t ngx_http_core_variables[]...

  • Nginx作为反向Proxy的优化要点

    日期:

    原文地址:http://my.oschina.net/hyperichq/blog/405421 常用优化要点 当nginx用于反向代理时,每个客户端将使用两个连接: 一个用于响应客户端的请求,另一个用于到后端的访问; 如果机器是两核CPU,例如: 1 2 $grep^proces/proc/cpuinfo|wc-l2 那么,可...

  • 部署Yii,Apache和Nginx服务器所需的配置

    日期:

    1. Apache Yii is ready to work with a default Apache web server configuration. The .htaccess files in Yii framework and application folders restrict access to the restricted resources. To hide the bootstrap file (usually index.php) in your...

  • 【nginx】配置文件的优化

    日期:

    1、编译安装过程优化 在编译Nginx时,默认以debug模式进行,而在debug模式下会插入很多跟踪和ASSERT之类的信息,编译完成后,一个Nginx要有好几兆字节。在编译前取消Nginx的debug模式,编译完成后Nginx只有几百千字节,因此可以在编译之前,修改相关源码,取...

  • Nginx.conf 配置文件标准配置

    日期:

    #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #error_log /usr/local/var/log/nginx/error.log warn; #pid logs/nginx.pid; #pid /usr/local/var/run/nginx.pid; even...

  • Nginx.conf配置文件标准配置

    日期:

    #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #error_log /usr/local/var/log/nginx/error.log warn; #pid logs/nginx.pid; #pid /usr/local/var/run/nginx.pid; event...

  • nginx实现https单向认证

    日期:

    1、安装 nginx要安装http_ssl_module模块,需要OpenSSL库和相关的开发包,因此在安装前,必须安装这些支持 在centos系统下,直接用yum安装即可:# yum install openssl openssl-devel 编译nginx # tar -zxvf pcre-8.12.tar.gz # cd pcre-8.12 # ./configure pr...

  • Linux下Nginx的安装、升级及动态添加模块

    日期:

    系统基于ubuntu server 14.04.4 amd64 安装 第一步 下载并解压Nginx压缩包 从Nginx官网下载Nginx,或者在Linux上执行wget http://nginx.org/download/nginx-1.10.1.tar.gz命令直接下载 解压nginx-1.10.1.tar.gz文件: tar zxvf nginx-1.10.1.tar.gz 第二步...

  • Nginx 1.5.2 + PHP 5.5.1 + MySQL 5.6.10 在 CentOS 下的编译安装

    日期:

    最近配置了几台Web服务器,将安装笔记贴出来吧。没时间像以前那样,将文章写的那样系统了,请见谅。详细配置,可以看以前的旧文章: 1、安装Nginx: mkdir -p /Data/tgz cd /Data/tgz yum install wget yum install pcre yum install openssl* yum -y instal...