Skip to content

Instantly share code, notes, and snippets.

@solgenomics
Created May 10, 2010 13:49
Show Gist options
  • Save solgenomics/396053 to your computer and use it in GitHub Desktop.
Save solgenomics/396053 to your computer and use it in GitHub Desktop.
# enable extended apache server status, which is sometimes useful for debugging
ExtendedStatus On
<VirtualHost *:80>
ServerName sgn.localhost.localdomain
PerlWarn On
PerlTaintCheck On
LogLevel info
<Perl>
use lib '/home/leto/svn/sgn/lib';
use lib '/home/leto/svn/cview/lib';
use lib '/home/leto/svn/sgn-tools/lib';
use lib '/home/leto/svn/Phenome/lib';
use lib '/home/leto/svn/ITAG/lib';
use lib '/home/leto/svn/tomato_genome/lib';
use lib '/home/leto/svn/ITAG-analyses/lib';
use lib '/home/leto/svn/cxgn-corelibs/lib';
use local::lib '/home/leto/local-lib';
use SGN::Apache2::Startup vhost => 1, module_preload => 0;
$SIG{__DIE__} = \&CXGN::Apache::Error::cxgn_die_handler;
$SIG{__WARN__} = \&CXGN::Apache::Error::cxgn_warn_handler;
</Perl>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment