From 60c6ee3d76142eac898b63192cc69ecd38780d2f Mon Sep 17 00:00:00 2001 From: B Stack Date: Tue, 7 Feb 2017 11:22:11 -0500 Subject: 1.0-8, fixed scripts dir in conf, and moved httpd/sites to examples/ --- etc/httpd/sites/zz_proxy.conf | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 etc/httpd/sites/zz_proxy.conf (limited to 'etc/httpd/sites/zz_proxy.conf') diff --git a/etc/httpd/sites/zz_proxy.conf b/etc/httpd/sites/zz_proxy.conf deleted file mode 100644 index c6221de..0000000 --- a/etc/httpd/sites/zz_proxy.conf +++ /dev/null @@ -1,41 +0,0 @@ -# File: /etc/httpd/sites/zz_proxy.conf - - Order deny,allow - Deny from all - # Allow each host or range as desired. - - Allow from 203.0.193.232/255.255.255.255 - Allow from 10.1.9.194/32 - # Whole Linux dev subnet - Allow from 10.1.9.0/24 - # Whole IT-192 network in vmware so I do not have to keep doing this - Allow from 203.0.192.0/23 - # onyx for webtatic - Allow from 10.1.9.121/32 - # company-owned wireless devices subnets - Allow from 10.48.0.0/16 - # personally-owned wireless devices - Allow from 10.21.0.0/16 - - - -Listen 10.1.8.63:8090 - - - ServerName junk.example.com:8080 - ServerAlias * - - DocumentRoot /var/www/html/notfound - - RewriteEngine On - ProxyRequests On - RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} - ProxyPass / http://%{HTTP_HOST}%{REQUEST_URI} - - # if this apache server is behind a proxy: - #ProxyRemote * http://proxy.example.com:8080/ - - CustomLog "logs/proxy_log" combinedvhost env=!dontlog - ErrorLog "logs/proxy_error_log" - - -- cgit