1、 nginx的proxy_pass要加载默认的 proxy_params,里面配置了怎么传递 真实IP
2、apache默认的combine的logformat默认没有取有代理 情况下的IP,所以需要加一个:
XML/HTML代码
- LogFormat "\"%{x-forwarded-for}i\" %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined2
然后CustomLog的时候就是使用 combined2,例如: CustomLog ${APACHE_LOG_DIR}/www.neatstudio.com.access.log combined2
上面那个logformat如果要全局使用,就放到apache.conf里。如果只是当前项目使用,则可以放到当前的hosts文件中
---EOF---
其实没啥,就是做个记录。老是会忘