From ec09275c204205f57b25da0e14a658ce91306b20 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Thu, 22 Mar 2007 11:44:51 +0000 Subject: [PATCH 1/1] New file: main Apache installation uses this to proxy requests onto a separate dedicated installation. --- web/conf/apache1.3/newshawarma-proxy.conf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 web/conf/apache1.3/newshawarma-proxy.conf diff --git a/web/conf/apache1.3/newshawarma-proxy.conf b/web/conf/apache1.3/newshawarma-proxy.conf new file mode 100644 index 0000000..34ede26 --- /dev/null +++ b/web/conf/apache1.3/newshawarma-proxy.conf @@ -0,0 +1,16 @@ +# $Id: newshawarma-proxy.conf,v 1.1 2007-03-22 11:44:51 mike Exp $ +# +# A very simple configuration to proxy the IRSpy server to a separate +# Apache instance running on the same host. This separation is useful +# to isolate IRSpy from other sites' errors and vice versa. + +LoadModule proxy_module /usr/lib/apache/1.3/libproxy.so + + ServerName irspy.indexdata.com + ProxyPass / http://irspy.indexdata.com:81/ + ProxyPassReverse / http://irspy.indexdata.com:81/ + + # These are the logs for the proxying operation + ErrorLog /var/log/apache/irspy-error.log + CustomLog /var/log/apache/irspy-access.log combined + -- 1.7.10.4