Folks - A review of my firewall logs followed by a rejection due to a
RBL listing makes it seem like my Apache 2.0.40 reverse proxy in my DMZ
is being used by spammers. Here is the relevent sections of my
httpd.conf: NameVirtualHost X.Y.1.1 <VirtualHost X.Y.1.1> ServerName www.pelleys.com ServerAlias pelleys.com ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass / http://some-internal-server/ ProxyPassReverse / http://some-internal-server/ CustomLog /path/to/www-proxy.log combined ErrorLog /path/to/www-error.log </VirtualHost> <VirtualHost X.Y.1.1> ServerName cameron.pelleys.com ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass / http://some-internal-server2/ ProxyPassReverse / http://some-internal-server2/ CustomLog /path/to/www2-proxy.log combined ErrorLog /path/to/www2-error.log </VirtualHost> Is there soemthing missing here? Thanks! Cheers, Mike |