+++ /dev/null
-# $Id: newshawarma-proxy.conf,v 1.3 2007-06-25 10:39:22 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.
-
-<VirtualHost 83.133.64.64>
- ServerName irspy.indexdata.com
- ServerAlias targettest.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
-</VirtualHost>
+++ /dev/null
-# $Id: newshawarma.conf,v 1.4 2009-05-26 07:29:56 mike Exp $
-#
-# Sample configuration for running an IRSpy web-site under Apache 1.3.
-#
-# This is the configuration that I use on the live machine,
-# newshawarma, which is a PC running Debian GNU/Linux 3.1.
-# On this machine, the IRSpy software is at
-# /home/mike/cvs/irspy
-#
-# This file can be included in the Apache configuration by adding a
-# line like this to apache.conf or one of its included files:
-# Include /home/mike/cvs/irspy/web/conf/apache1.3/newshawarma.conf
-#
-# When running on Debian, don't forget to
-# install libapache-request-perl as well as libhtml-mason-perl,
-# otherwise Mason will fail mysteriously.
-#
-# And do NOT attempt to install ZAP on the same apache, that is known
-# to fail!
-
-<VirtualHost 83.133.64.64>
- ServerName irspy.indexdata.com
- ErrorLog /var/log/apache-irspy/irspy-error.log
- CustomLog /var/log/apache-irspy/irspy-access.log combined
- DocumentRoot /home/mike/cvs/irspy/web/htdocs
- <FilesMatch "\.(html|css)$">
- SetHandler perl-script
- PerlHandler HTML::Mason::ApacheHandler
- </FilesMatch>
- PerlAddVar MasonCompRoot "private => /home/mike/cvs/irspy/web/htdocs"
- PerlSetVar MasonDataDir /home/mike/cvs/irspy/web/data
- PerlSetVar IRSpyLibDir /home/mike/cvs/irspy/lib
- PerlSetEnv PERL5LIB /home/mike/cvs/irspy/lib
- <Location /admin>
- AuthType Basic
- AuthName "IRSpy Administration"
- AuthUserFile /home/mike/cvs/irspy/web/conf/htpasswd
- Require user admin
- </Location>
-</VirtualHost>
-
-<VirtualHost 83.133.64.64>
- ServerName targettest.indexdata.com
- Redirect permanent / http://irspy.indexdata.com/
-</VirtualHost>
+++ /dev/null
-# $Id: rafa.conf,v 1.1 2007-05-02 13:54:40 mike Exp $
-#
-# Sample configuration for running an IRSpy web-site under Apache 1.3.
-#
-# This is the configuration that I use on the development machine,
-# xeno, which is a Fujitu-Siemens SCENIC X102 PC running Ubuntu Linux
-# release 6.06. On this machine, the IRSpy software is at
-# /usr/local/src/cvs/irspy
-#
-# This file can be included in the Apache configuration by adding a
-# line like this to apache.conf or one of its included files:
-# Include /usr/local/src/cvs/irspy/web/conf/apache1.3/xeno.conf
-#
-# When running on Ubuntu (and probably Debian), don't forget to
-# install libapache-request-perl as well as libhtml-mason-perl,
-# otherwise Mason will fail mysteriously.
-
-<VirtualHost localhost>
- ServerName x.irspy.indexdata.com
- ErrorLog /var/log/apache/irspy-error.log
- CustomLog /var/log/apache/irspy-access.log combined
- DocumentRoot /usr/local/src/cvs/irspy/web/htdocs
- <FilesMatch "\.(html|css)$">
- SetHandler perl-script
- PerlHandler HTML::Mason::ApacheHandler
- </FilesMatch>
- PerlAddVar MasonCompRoot "private => /usr/local/src/cvs/irspy/web/htdocs"
- PerlSetVar MasonDataDir /usr/local/src/cvs/irspy/web/data
- PerlSetVar IRSpyLibDir /usr/local/src/cvs/irspy/lib
- PerlSetEnv PERL5LIB /usr/local/src/cvs/irspy/lib
- PerlInitHandler Apache::Reload
- PerlSetVar ReloadAll Off
- PerlSetVar ReloadModules "ZOOM::IRSpy::Utils"
- <Location /admin>
- AuthType Basic
- AuthName "IRSpy Administration"
- AuthUserFile /usr/local/src/cvs/irspy/web/conf/htpasswd
- Require user admin
- </Location>
-</VirtualHost>
+++ /dev/null
-# $Id: test.conf,v 1.5 2007-02-20 18:51:37 mike Exp $
-#
-# Sample configuration for running an IRSpy web-site under Apache 1.3.
-#
-# This is the configuration that I use on the staging machine,
-# test, which is a PC running Debian GNU/Linux 3.1.
-# On this machine, the IRSpy software is at
-# /usr/local/src/cvs/irspy
-#
-# This file can be included in the Apache configuration by adding a
-# line like this to apache.conf or one of its included files:
-# Include /usr/local/src/cvs/irspy/web/conf/apache1.3/test.conf
-#
-# When running on Debian, don't forget to
-# install libapache-request-perl as well as libhtml-mason-perl,
-# otherwise Mason will fail mysteriously.
-
-<VirtualHost 10.0.0.4>
- ServerName irspy.indexdata.com
- ErrorLog /var/log/apache/irspy-error.log
- CustomLog /var/log/apache/irspy-access.log combined
- DocumentRoot /usr/local/src/cvs/irspy/web/htdocs
- <FilesMatch "\.(html|css)$">
- SetHandler perl-script
- PerlHandler HTML::Mason::ApacheHandler
- </FilesMatch>
- PerlAddVar MasonCompRoot "private => /usr/local/src/cvs/irspy/web/htdocs"
- PerlSetVar MasonDataDir /usr/local/src/cvs/irspy/web/data
- PerlSetVar IRSpyLibDir /usr/local/src/cvs/irspy/lib
- PerlSetEnv PERL5LIB /usr/local/src/cvs/irspy/lib
- <Location /admin>
- AuthType Basic
- AuthName "IRSpy Administration"
- AuthUserFile /usr/local/src/cvs/irspy/web/conf/htpasswd
- Require user admin
- </Location>
-</VirtualHost>
+++ /dev/null
-# $Id: xeno.conf,v 1.9 2008-08-29 18:58:13 mike Exp $
-#
-# Sample configuration for running an IRSpy web-site under Apache 1.3.
-#
-# This is the configuration that I use on the development machine,
-# xeno, which is a Fujitu-Siemens SCENIC X102 PC running Ubuntu Linux
-# release 6.06. On this machine, the IRSpy software is at
-# /usr/local/src/cvs/irspy
-#
-# This file can be included in the Apache configuration by adding a
-# line like this to apache.conf or one of its included files:
-# Include /usr/local/src/cvs/irspy/web/conf/apache1.3/xeno.conf
-#
-# When running on Ubuntu (and probably Debian), don't forget to
-# install libapache-request-perl as well as libhtml-mason-perl,
-# otherwise Mason will fail mysteriously.
-
-NameVirtualHost 192.168.1.75
-
-<VirtualHost 192.168.1.75>
- ServerName x.irspy.indexdata.com
- ErrorLog /var/log/apache/irspy-error.log
- CustomLog /var/log/apache/irspy-access.log combined
- DocumentRoot /usr/local/src/cvs/irspy/web/htdocs
- <FilesMatch "\.(html|css)$">
- SetHandler perl-script
- PerlHandler HTML::Mason::ApacheHandler
- </FilesMatch>
- PerlAddVar MasonCompRoot "private => /usr/local/src/cvs/irspy/web/htdocs"
- PerlSetVar MasonDataDir /usr/local/src/cvs/irspy/web/data
- PerlSetVar IRSpyLibDir /usr/local/src/cvs/irspy/lib
- PerlSetEnv PERL5LIB /usr/local/src/cvs/irspy/lib
- <Location /admin>
- AuthType Basic
- AuthName "IRSpy Administration"
- AuthUserFile /usr/local/src/cvs/irspy/web/conf/htpasswd
- Require user admin
- </Location>
-</VirtualHost>