From: Mike Taylor Date: Thu, 22 Mar 2007 11:44:51 +0000 (+0000) Subject: New file: main Apache installation uses this to proxy requests onto X-Git-Tag: CPAN-v1.02~54^2~458 X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=commitdiff_plain;h=ec09275c204205f57b25da0e14a658ce91306b20;hp=e42d36398d156afa78c4a3b281af6943c750a7b6 New file: main Apache installation uses this to proxy requests onto a separate dedicated installation. --- 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 +