[open-ils-commits] r7601 - trunk/Open-ILS/examples/apache
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Jul 27 13:59:39 EDT 2007
Author: miker
Date: 2007-07-27 13:58:22 -0400 (Fri, 27 Jul 2007)
New Revision: 7601
Modified:
trunk/Open-ILS/examples/apache/eg_vhost.conf
trunk/Open-ILS/examples/apache/startup.pl
Log:
configuration support for the exporter service
Modified: trunk/Open-ILS/examples/apache/eg_vhost.conf
===================================================================
--- trunk/Open-ILS/examples/apache/eg_vhost.conf 2007-07-27 17:49:00 UTC (rev 7600)
+++ trunk/Open-ILS/examples/apache/eg_vhost.conf 2007-07-27 17:58:22 UTC (rev 7601)
@@ -181,6 +181,16 @@
# ----------------------------------------------------------------------------------
+# The exporter lives here
+# ----------------------------------------------------------------------------------
+<Location /exporter>
+ SetHandler perl-script
+ PerlHandler OpenILS::WWW::Exporter
+ Options +ExecCGI
+ allow from all
+</Location>
+
+# ----------------------------------------------------------------------------------
# Reporting output lives here
# ----------------------------------------------------------------------------------
<Location /reporter/>
Modified: trunk/Open-ILS/examples/apache/startup.pl
===================================================================
--- trunk/Open-ILS/examples/apache/startup.pl 2007-07-27 17:49:00 UTC (rev 7600)
+++ trunk/Open-ILS/examples/apache/startup.pl 2007-07-27 17:58:22 UTC (rev 7601)
@@ -1,5 +1,6 @@
#!/usr/bin/perl
use lib qw( /openils/lib/perl5 );
+use OpenILS::WWW::Exporter qw( /openils/conf/opensrf_core.xml );
use OpenILS::WWW::SuperCat qw( /openils/conf/opensrf_core.xml );
use OpenILS::WWW::AddedContent qw( /openils/conf/opensrf_core.xml );
use OpenILS::Reporter::Proxy ('/openils/conf/opensrf_core.xml');
More information about the open-ils-commits
mailing list