use throw() for message page
[sgn.git] / conf / apache2_production.conf.example
blobfc67dd8ba02aae6bf34951ab41e4e4c470c6e26f
1 <VirtualHost *:80>
3     ServerName       solgenomics.net
5     PerlWarn         Off
6     PerlTaintCheck   On
8     LogLevel         error
10     <Perl>
11        use lib '/usr/share/sgn-site/sgn/lib',
12                '/usr/share/sgn-site/lib/perl5';
13         
14        use SGN::Deploy::Apache SGN => (
15            type  => 'mod_perl',
16            vhost => 1,
17            env   => {
18               PERL5LIB   => join( ':', @INC ),
19               SGN_CONFIG => '/etc/cxgn/SGN.conf',
20            },
21        );
23     </Perl>
25 </VirtualHost>
27 # vhost for redirecting aliases of this site to the main site
28 <VirtualHost *:80>
29     ServerName sgn-vm
30     ServerAlias www.solgenomics.net
31     ServerAlias solanaceae.org
32     ServerAlias www.solanaceae.org
33     ServerAlias solgenomics.org
34     ServerAlias www.solgenomics.org
35     ServerAlias solgenomics.com
36     ServerAlias www.solgenomics.com
37     ServerAlias soldb.cit.cornell.edu
38     ServerAlias sgn.cornell.edu
39     ServerAlias www.sgn.cornell.edu
40     Redirect permanent / http://solgenomics.net/
41 </VirtualHost>