wget http://nginx.org/download/nginx-1.12.2.tar.gz
安装依赖包
yum install -y pcre-devel openssl-devel
参数 | 说明 |
---|---|
pcre | 兼容perl语言正则表达式, rewirte模块 参数信息(perl方式定义正则表达式 |
openssl | ssh---openssh/openssl---https |
# 总结:所有安装依赖软件,后面都要加上-devel
用户准备
useradd -u1001 www
编译
./configure --prefix=/application/nginx-1.12.2 --user=www --group=www --with-http_stub_status_module --with-http_ssl_module
make && make install
参数 | 说明 |
---|---|
--prefix | 表示指定软件安装到哪个目录中,指定目录不存在会自动创建 |
--user/--group | nginx工作进程由哪个用户运行管理 |
--with-http_stub_status_module | 启动nginx状态模块功能(用户访问nginx的网络信息) |
--with-http_ssl_module | 启动https功能模块 |
后续
ln -s /application/nginx-1.12.2 /application/nginx
/applicaton/nginx/sbin/nginx
lsof -i:80
原文:http://blog.51cto.com/3524436/2074353