nginx是比较常用的高性能HTTP服务器和反向代理服务器,许多用户更是把做反向代理使用,
常言道:好记性不如烂笔头 时间久了总是有些遗忘,本文记录一下源码编码安装以及常用模块的使用介绍。
编译安装
tar -zxf nginx-1.7.3.tar.gz
cd nginx-1.7.3/
groupadd -r nginx
useradd -g nginx -s /sbin/nologin -M nginx
创建tmp文件夹 不然安装后启动会报错
mkdir -pv /var/tmp/nginx/{proxy,client,fcgi,uwsgi,scgi}
./configure \
--prefix=/usr/local/nginx \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--user=nginx \
--group=nginx \
--with-http_ssl_module \
--with-http_flv_module \
--with-http_stub_status_module \
--with-http_gzip_static_module \
--http-client-body-temp-path=/var/tmp/nginx/client/ \
--http-proxy-temp-path=/var/tmp/nginx/proxy/ \
--http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \
--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \
--http-scgi-temp-path=/var/tmp/nginx/scgi \
--with-pcre
make
make install
到此简单的安装算是完成了。
常用模块配置
nginx status
location /nginx_status
{
stub_status on;
access_log off;
}
配置好后重新启动nginx curl localhost/nginx_status
查看状态
如果出现无法识别stub_status的时候可能是安装的时候没有安装http_stub_status_module模块。