apache设置反向代理

编译Apache时要进行的设置
./configure --enable-mods-shared="all proxy"

1>修改 httpd.conf 文件中:
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
模块功能设置为启用。

2>在 httpd.conf 文件中,添加:
ProxyPass /test http://192.168.1.2:8080/test
ProxyPassReverse /test http://192.168.1.2:8080/test
http://192.168.1.2:8080/test>
    AllowOverride None
    Order Deny,Allow
    Allow from all


步骤2的功能:访问 http://127.0.0.1/test/ 时,会重新反向代理访至 http://192.168.1.2:8080/test

3>重新启动Apache.

OK

你可能感兴趣的:(apache设置反向代理)