备忘Nginx 安装
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了备忘Nginx 安装相关的知识,希望对你有一定的参考价值。
安装nginx的依赖包
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.10.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.10.2 /application/nginx /applicaton/nginx/sbin/nginx lsof -i:80
以上是关于备忘Nginx 安装的主要内容,如果未能解决你的问题,请参考以下文章