]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/examples/apache/eg_startup.in
add typo fix back
[working/Evergreen.git] / Open-ILS / examples / apache / eg_startup.in
1 #!/usr/bin/perl
2 use OpenSRF::AppSession;
3
4 # default ingress value for all Apache/mod_perl clients
5 OpenSRF::AppSession->ingress('apache'); 
6
7 use OpenILS::WWW::Exporter qw( @sysconfdir@/opensrf_core.xml );
8 use OpenILS::WWW::SuperCat qw( @sysconfdir@/opensrf_core.xml );
9 use OpenILS::WWW::AddedContent qw( @sysconfdir@/opensrf_core.xml );
10 use OpenILS::WWW::Proxy ('@sysconfdir@/opensrf_core.xml');
11 use OpenILS::WWW::Vandelay qw( @sysconfdir@/opensrf_core.xml );
12 use OpenILS::WWW::TemplateBatchBibUpdate qw( @sysconfdir@/opensrf_core.xml );
13 use OpenILS::WWW::EGWeb;
14 use OpenILS::WWW::PasswordReset ('@sysconfdir@/opensrf_core.xml');
15 use OpenILS::WWW::IDL2js ('@sysconfdir@/opensrf_core.xml');
16 use OpenILS::WWW::FlatFielder;
17
18 # - Uncomment the following 2 lines to make use of the IP redirection code
19 # - The IP file should to contain a map with the following format:
20 # - actor.org_unit.shortname <start_ip> <end_ip>
21 # - e.g.  LIB123 10.0.0.1 10.0.0.254
22
23 #use OpenILS::WWW::Redirect qw(@sysconfdir@/opensrf_core.xml);
24 #OpenILS::WWW::Redirect->parse_ips_file('@sysconfdir@/lib_ips.txt');
25
26
27
28 1;
29