【发布时间】:2021-04-07 10:03:09
【问题描述】:
我使用 nginx 作为邮件代理,用于身份验证和其他一些附加功能。但是我需要在nginx前面使用另一个代理(比如haproxy)。一切正常,一切正常。但是 nginx 无法检索客户端的真实 IP 地址。
在 http 模块中,我可以使用 x-forwarded-for 标头和 nginx 的 proxy_protocol 转发它。但是在邮件模块中,我不能这样做。邮件模块不支持 proxy_protocol。
有什么办法,如何将客户端真实IP地址传递给nginx?
我的 haproxy 和 nginx 配置喜欢;
haproxy.cfg:
frontend IMAP
bind 0.0.0.0:143 name IMAP tcp-ut 30s
default_backend IMAP
backend IMAP
option tcp-check
tcp-check connect port 11143
tcp-check expect string * OK
server localhost 127.0.0.1:11143 send-proxy check
nginx.conf
mail {
auth_http 127.0.0.1:333/auth;
proxy on;
imap_auth plain;
server {
listen 11143;
protocol imap;
auth_http_header proxyprotocol imap;
}
}
【问题讨论】: