Nginx 作为 Apache 的反向代理

Nginx 作为 Apache 的反向代理

我让 nginx 作为 apache 的反向代理运行在我的网站上。我遇到的问题是 apache 中的所有日志都以 127.0.0.1 作为 IP 地址。我已在 nginx.conf 中设置了这些

proxy_set_header X-Real-IP  $remote_addr;

# Set the hostname
        proxy_set_header Host $host;

#Set the forwarded-for header.
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

我错过了什么?

答案1

安装和配置rpafApache 模块。例如,参见这篇博文

相关内容