我想在几天后收到的服务器上添加 Cloudflare。但是,为了保留我的访问者 IP,我必须按照 Cloudflare wiki 安装 HttpRealIpModule 模块——https: //www.cloudflare.com/wiki/Nginx
我使用这些 EPEL 存储库,
rpm --import https://fedoraproject.org/static/0608B895.txt
rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-7.noarch.rpm
rpm --import http://rpms.famillecollet.com/RPM-GPG-KEY-remi
rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
yum install yum-priorities
接着
yum install nginx
我有两个问题,
- 这些会自动安装 HttpRealIpModule
- 如果不是,我如何使用这些 EPEL 存储库安装它
remi 存储库中提供的 nginx 版本已经包含 HttpRealIpModule。你只需要
yum install nginx
.你可以检查 nginx 是用什么编译的
nginx -V
: