nginx入门之Rewrite

nginx入门之Rewrite Rewrite 是nginx服务器提供的一个重要功能,使用nginx提供的全局变量或自己设置的变量,结合正则表达式和标志位实 »

Author image 二道涯  

nginx入门之location

nginx入门之location 一、匹配规则 location [= | ~ | ~* |^~] uri { .... } 匹配顺序: 记录标准uri最匹配的一个,=前缀的精确匹配,并停止搜索 接着正则 »

Author image 二道涯  

nginx入门之基本配置

nginx入门之基本配置 一、基础配置 1.1 nginx.conf结构 ... #全局块 event { ... } http { #http块 ... #http全局块 server { #server块 ... #server 全 »

Author image 二道涯  

nginx入门之安装

nginx入门之安装 一、编译安装 下载 如:nginx-1.11.9.tar.gz wget http://nginx.org/download/nginx-1.11.9.tar.gz 编译安装 安装之前需要安装依赖库 yum -y install gcc gcc-c++ automake pcre pcre-devel zlib-devel open openssl-devel 解压、 »

Author image 二道涯