当您没有代理 IP 列表时会发生什么?使用 Akamai、Google、Edgecast 或 CloudFront 等站点加速服务时;从他们那里获得会话的 IP 总是很困难的。
在 CDN 上测试我们的 codeigniter 应用程序时,我们注意到 IP 是作为 CDN IP 传递的,而不是会话数据库中的客户端 IP。
你怎么能解决这个问题?
/*
|--------------------------------------------------------------------------
| Reverse Proxy IPs
|--------------------------------------------------------------------------
|
| If your server is behind a reverse proxy, you must whitelist the proxy IP
| addresses from which CodeIgniter should trust the HTTP_X_FORWARDED_FOR
| header in order to properly identify the visitor's IP address.
| Comma-delimited, e.g. '10.0.1.200,10.0.1.201'
|
*/
$config['proxy_ips'] = '';
谢谢!