From 3691327d0a816fc8471ba51dcd5ecd2ac42a6025 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 19 Jun 2013 17:09:30 +0100 Subject: [PATCH] Add Apache2 proxy configuration for mkws and somesite. --- etc/apache2/spclient-proxy | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 etc/apache2/spclient-proxy diff --git a/etc/apache2/spclient-proxy b/etc/apache2/spclient-proxy new file mode 100644 index 0000000..eab9a02 --- /dev/null +++ b/etc/apache2/spclient-proxy @@ -0,0 +1,20 @@ + + ServerName mkws.indexdata.com + ServerAlias somesite.indexdata.com + + ProxyRequests off + ProxyVia On + ProxyPreserveHost On + + Order deny,allow + Allow from all + + + ProxyPass / http://diane:80/ + ProxyPassReverse / http://diane:80/ + + # These are the logs for the proxying operation + ErrorLog /var/log/apache2/mkws-proxy-error.log + CustomLog /var/log/apache2/mkws-proxy-access.log combined + + -- 1.7.10.4