summaryrefslogtreecommitdiff
path: root/etc/httpd/sites/zz_proxy.conf
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2017-02-07 11:22:11 -0500
committerB Stack <bgstack15@gmail.com>2017-02-07 11:22:11 -0500
commit60c6ee3d76142eac898b63192cc69ecd38780d2f (patch)
tree75aac89944fa0d3355d3e17cfa8d44f30f85ca4e /etc/httpd/sites/zz_proxy.conf
parentfixed mirror.cron (diff)
downloadmirror-60c6ee3d76142eac898b63192cc69ecd38780d2f.tar.gz
mirror-60c6ee3d76142eac898b63192cc69ecd38780d2f.tar.bz2
mirror-60c6ee3d76142eac898b63192cc69ecd38780d2f.zip
1.0-8, fixed scripts dir in conf, and moved httpd/sites to examples/
Diffstat (limited to 'etc/httpd/sites/zz_proxy.conf')
-rw-r--r--etc/httpd/sites/zz_proxy.conf41
1 files changed, 0 insertions, 41 deletions
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
-<Proxy *>
- 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
-
-</Proxy>
-
-Listen 10.1.8.63:8090
-<VirtualHost 10.1.8.63:8080>
-
- 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"
-
-</VirtualHost>
bgstack15