背景
为了解决CentOS7.2自带的Nginx上没有auth-request
支持的问题,需要自己手工编译安装Nginx .
安装依赖
更新yum
yum update -y yum -y install gcc gcc-c++ make zlib-devel pcre-devel openssl-devel
编译与安装
下载(可访问官网下载最新版)
wget http://Nginx.org/download/Nginx-1.10.1.tar.gz
解压
tar -xvf Nginx-1.10.1.tar.gz
编译
cd cd Nginx-1.10.1 ./configure --with-http_auth_request_module
安装
make && make install
运行
/usr/local/Nginx/sbin/Nginx
其他
判断当前版本是否支持某项功能的命令https://github.com/shopware/devdocs/blob/master/source/blog/_posts/2015-03-02-sso-with-nginx-auth_request.md#installation:
Nginx -V 2>&1 | grep -qF -- --with-http_auth_request_module && echo ":)" || echo ":("