一、实验环境
操作系统: CenOS7.2 Mininal
IP: 192.168.1.108
二、配置nginx官方yum源
http://nginx.org/en/linux_packages.html#stable
# vim /etc/yum.repos.d/nginx.repo
########################
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/mainline/centos/7/$basearch/
gpgcheck=0
enabled=1
########################
# rpm --import http://nginx.org/keys/nginx_signing.key
三、安装nginx最新稳定版
# yum list all | grep nginx
# yum -y install nginx
# nginx -V
四、nginx的配置文件
# rpm -qc nginx
五、nginx的编译参数
rpm安装的nginx的编译参数
# nginx -V 2>&1 | sed 's/ --/\n--/g' | egrep --color '.*path.*|$'
# nginx -V 2>&1 | sed 's/ --/\n--/g' | egrep --color '.*path.*|^'
# nginx -V 2>&1 | sed 's/ --/\n--/g' | egrep --color '.*path.*|*'
# nginx -V 2>&1 | sed 's/ --/\n--/g' | egrep --color '.*path.*|?'