]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/examples/apache_24/eg_startup.in
LP#1871211: Shibboleth integration support
[Evergreen.git] / Open-ILS / examples / apache_24 / 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 ('@sysconfdir@/opensrf_core.xml', 'OpenILS::WWW::EGCatLoader', 'en_us');;
14 use OpenILS::WWW::IDL2js ('@sysconfdir@/opensrf_core.xml');
15 use OpenILS::WWW::FlatFielder;
16 use OpenILS::WWW::PhoneList ('@sysconfdir@/opensrf_core.xml');
17 use OpenILS::WWW::RemoteAuth ('@sysconfdir@/opensrf_core.xml', 'OpenILS::WWW::RemoteAuth::Basic', 'OpenILS::WWW::RemoteAuth::EZProxyCGI', 'OpenILS::WWW::RemoteAuth::PatronAPI');
18
19 # Pass second argument of '1' to enable template caching.
20 use OpenILS::WWW::PrintTemplate ('@sysconfdir@/opensrf_core.xml', 0);
21
22 # - Uncomment the following 2 lines to make use of the IP redirection code
23 # - The IP file should to contain a map with the following format:
24 # - actor.org_unit.shortname <start_ip> <end_ip>
25 # - e.g.  LIB123 10.0.0.1 10.0.0.254
26
27 #use OpenILS::WWW::Redirect qw(@sysconfdir@/opensrf_core.xml);
28 #OpenILS::WWW::Redirect->parse_ips_file('@sysconfdir@/lib_ips.txt');
29
30
31 1;
32