Add IRSpyLibDir
[irspy-moved-to-github.git] / web / conf / apache1.3 / xeno.conf
1 # $Id: xeno.conf,v 1.2 2006-09-28 16:00:30 mike Exp $
2 #
3 # Sample configuration for running an IRSpy web-site under Apache 1.3.
4 #
5 # This is the configuration that I use on the development machine,
6 # xeno, which is a Fujitu-Siemens SCENIC X102 PC running Ubuntu Linux
7 # release 6.06.  On this machine, the IRSpy software is at
8 #       /usr/local/src/cvs/irspy
9 #
10 # This file can be included in the Apache configuration by adding a
11 # line like this to apache.conf or one of its included files:
12 #       Include /usr/local/src/cvs/irspy/web/conf/apache1.3/xeno.conf
13 #
14 # When running on Ubuntu (and probably Debian), don't forget to
15 # install libapache-request-perl as well as libhtml-mason-perl,
16 # otherwise Mason will fail mysteriously.
17
18 <VirtualHost localhost>
19     ServerName x.irspy.indexdata.com
20     ErrorLog     /usr/local/src/cvs/irspy/web/logs/error.log
21     CustomLog    /usr/local/src/cvs/irspy/web/logs/access.log combined
22     DocumentRoot /usr/local/src/cvs/irspy/web/htdocs
23     <FilesMatch "\.(html|css)$">
24      SetHandler perl-script
25      PerlHandler HTML::Mason::ApacheHandler
26     </FilesMatch>
27     PerlAddVar MasonCompRoot "private => /usr/local/src/cvs/irspy/web/htdocs"
28     PerlSetVar MasonDataDir              /usr/local/src/cvs/irspy/web/data
29     PerlSetVar IRSpyLibDir               /usr/local/src/cvs/irspy/lib
30 </VirtualHost>