How to configure Proxy module for Apache 1.3.19 ?
How to configure Proxy module for Apache 1.3.19 ?
I had added the next code at the httpd.conf file, but the icons and links not run propertly.
I will have mapped the web site of the corporation (ONLY THE WEB SITE) and revoke all others sites.
Thanks and best regards from Barcelona.
<IfModule mod_proxy.c>
ProxyRequests On
<Directory proxy:*>
Order deny,allow
Deny from all
Allow from 191.0.0.0/255.255.0.0 190.0.0.0/255.255.0.0
</Directory>
#
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
# ("Full" adds the server version; "Block" removes all outgoing Via:
headers)
# Set to one of: Off | On | Full | Block
#
ProxyVia On
#
# To enable the cache as well, edit and uncomment the following lines:
# (no cacheing without CacheRoot)
#
CacheRoot "D:\IASORA\iSuites\Apache\Apache/proxy"
CacheSize 64
CacheGcInterval 4
CacheMaxExpire 24
CacheLastModifiedFactor 0.1
CacheDefaultExpire 1
ProxyReceiveBufferSize 2048
ProxyPass /web-quick/ http://www.web-internet.com
ProxyPassReverse /web-quick/ http://www.web-internet.com
# NoCache a_domain.com another_domain.edu joes.garage_sale.com
TransferLog D:\IASORA\iSuites\Apache\Apache/proxy/access_log
ErrorLog D:\IASORA\iSuites\Apache\Apache/proxy/error_log
</IfModule>
# End of proxy directives.