Check this out

Wednesday 23 November 2011

SWIFTNet Browse - Configure Apache for HTTP Proxy software

This is the example how to configure apache proxy software to concentrate the browse HTTPS traffic.

The configuration is based on the Windows Apache HTTP server v2.2.15 software. This example also restricts the hosts which are allowed to use the HTTP proxy to a specified domain. The configuration of Apache is stored in httpd.conf, a configuration file dynamically created during the installation of the Apache Software. Its content varies depending on the underlying system configuration

 

#edited 2011-11-21 by Berry Hamzah


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


#Forward Proxy


AllowCONNECT 80 443 49171   
<IfModule mod_proxy.c>
ProxyRequests On

<Proxy *>
Order deny,allow
Deny from none
Allow from all
</Proxy>
ProxyRemote * http://10.204.4.103:80
NoProxy .swiftnet.sipn.swift.com 10.204.6.123
</IfModule>

#ServerName its-berry.com:80
ServerName 10.204.6.123:80

No comments:

Post a Comment

Popular Posts