Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Apache 2.0.52 (win32) proxy setup

Status
Not open for further replies.

lscukltd

Technical User
Oct 22, 2004
9
US
Hi

Have set up my proxy on my Windows but it's not working. can any one help please... Please see my setting for proxy

#LoadModule
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

# Proxy Server directives. Uncomment the following lines to
# enable the proxy server:
#
<IfModule mod_proxy.c>
ProxyRequests On

<Proxy:*>
Order deny,allow
Deny from all
Allow from all
</Proxy>

# Blocking Sites via the Proxy
#Localizing Remote URLs and Hiding Servers from View
ProxyPass /sunbooks/ ProxyRemote *
#
# 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
</IfModule>

It works on my linux server but not on windows.
 
Probably because you are trying to load the shared libraries (.so). You need to load the mod_proxy.dll instead (the windows equivelent to the .so files)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top