|
Últimamente, en generalApache-2.2 yApache-2,4 para añadir a "Paquete de instalación de un solo clic de LNMP",NginxComo front-end, Apache solo puede obtener la dirección IP del front-end Nginx (127.0.0.1), pero no la dirección IP real del usuario. Nginx está configurado de la siguiente manera: - location / {
- try_files $uri @apache;
- }
- location @apache {
- internal;
- proxy_pass http://127.0.0.1:8080;
- include proxy.conf;
- }
- location ~ .*\.(php|php5)?$ {
- proxy_pass http://127.0.0.1:8080;
- include proxy.conf;
- }
Copiar código- proxy_connect_timeout 300s;
- proxy_send_timeout 900;
- proxy_read_timeout 900;
- proxy_buffer_size 32k;
- proxy_buffers 4 64k;
- proxy_busy_buffers_size 128k;
- proxy_redirect off;
- proxy_hide_header Vary;
- proxy_set_header Accept-Encoding '';
- proxy_set_header Referer $http_referer;
- proxy_set_header Cookie $http_cookie;
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
Copiar códigoHay 2 módulos para obtener direcciones IP reales en Apache:
mod_rpaf: Apache-2.2 está soportado; Apache-2.4 no es compatible. Hay muchos tutoriales en línea
mod_remoteip: Apache-2.4 viene con módulos; soporte para Apache-2.2;Recomendar Apache-2.2.25
mod_rpaf módulo - wget http://stderr.net/apache/rpaf/download/mod_rpaf-0.6.tar.gz
- tar -xzvf mod_rpaf-0.6.tar.gz
- cd mod_rpaf-0.6/
- /usr/local/apache/bin/apxs -i -c -n mod_rpaf-2.0.slo mod_rpaf-2.0.c
Copiar códigoAñadir configuración Apache - vi /usr/local/apache/conf/httpd.conf
- Include conf/extra/httpd-rpaf.conf
- vi /usr/local/apache/conf/extra/httpd-rpaf.conf
- LoadModule rpaf_module modules/mod_rpaf-2.0.so
- RPAFenable On
- RPAFsethostname On
- RPAFproxy_ips 127.0.0.1 10.8.0.110 # 代理服务器的ip地址(记得做相应修改)
- RPAFheader X-Forwarded-For
Copiar códigoNota: Añade la dirección IP del servidor proxy después de RPAFproxy_ips y rellena algunos Prueba - # /usr/local/apache/bin/apachectl -t
- # /usr/local/apache/bin/apachectl restart
- # 看日志
Copiar códigomod_remoteip La configuración mod_remoteip bajo Apache-2.2 es la siguiente: Instalación - wget https://github.com/ttkzw/mod_remoteip-httpd22/raw/master/mod_remoteip.c
- /usr/local/apache/bin/apxs -i -c -n mod_remoteip.so mod_remoteip.c
Copiar códigoModificar el perfil: - vi /usr/local/apache/conf/httpd.conf
- Include conf/extra/httpd-remoteip.conf
- vi /usr/local/apache/conf/extra/httpd-remoteip.conf
- LoadModule remoteip_module modules/mod_remoteip.so
- RemoteIPHeader X-Forwarded-For
- RemoteIPInternalProxy 127.0.0.1
Copiar códigoPrueba: - # /usr/local/apache/bin/apachectl -t
- # /usr/local/apache/bin/apachectl restart
- # 看日志
Copiar códigoLa configuración de Apache-2.4 mod_remoteip además de lo anterior (el módulo con su propio mod_remoteip no necesita ser instalado), también necesitas modificar el formato del registro (dejando de lado durante mucho tiempo). - LogFormat "%h %a %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i"" combined
- LogFormat "%h %a %l %u %t "%r" %>s %b" common
- LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i" %I %O" combinedi
Copiar código
Añadir %a al formato de registro
|