nginx安装
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx安装相关的知识,希望对你有一定的参考价值。
获取安装包
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
以上是关于nginx安装的主要内容,如果未能解决你的问题,请参考以下文章
nginx.conf 忽略了 nginx-ingress 配置映射片段
在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途