]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/examples/apache_24/eg_vhost.conf.in
LP2061136 - Stamping 1405 DB upgrade script
[Evergreen.git] / Open-ILS / examples / apache_24 / eg_vhost.conf.in
1 # ----------------------------------------------------------------------------------
2 # This is the global Evergreen virtual host config.  Anything you want published
3 # through all virtual hosts (port 80, port 443, etc.) should live in here.
4 # ----------------------------------------------------------------------------------
5
6 # ----------------------------------------------------------------------------------
7 # Point / to the opac - if you have a custom skin or locale, point at it here
8 # ----------------------------------------------------------------------------------
9 RewriteRule ^/$ %{REQUEST_SCHEME}://%{HTTP_HOST}/eg/opac/home [R=301,L]
10
11 # ----------------------------------------------------------------------------------
12 # Redirect staff to the correct URL if they forget to include the final /
13 # ----------------------------------------------------------------------------------
14 RewriteRule ^/eg/staff$ https://%{HTTP_HOST}/eg/staff/ [R=301,L]
15
16 # ----------------------------------------------------------------------------------
17 # Point / to the IP address redirector
18 # ----------------------------------------------------------------------------------
19 #<LocationMatch ^/$>
20 #    SetHandler perl-script
21 #    PerlHandler OpenILS::WWW::Redirect
22 #    Options +ExecCGI
23 #    PerlSendHeader On
24 #    #PerlSetVar OILSRedirectSkin "default"
25 #    # OILSRedirectDepth defaults to the depth of the branch that the OPAC was directed to
26 #    #PerlSetVar OILSRedirectDepth "0"
27 #    #PerlSetVar OILSRedirectLocale "en-US"
28 #    # Use the template-toolkit opac
29 #    #PerlSetVar OILSRedirectTpac "true"
30 #    allow from all
31 #</LocationMatch>
32
33
34 # ----------------------------------------------------------------------------------
35 # Assign a default locale to the accessible OPAC
36 # ----------------------------------------------------------------------------------
37 RewriteRule ^/opac/extras/slimpac/start.html$ %{REQUEST_SCHEME}://%{HTTP_HOST}/opac/en-US/extras/slimpac/start.html [R=301,L]
38 RewriteRule ^/opac/extras/slimpac/advanced.html$ %{REQUEST_SCHEME}://%{HTTP_HOST}/opac/en-US/extras/slimpac/advanced.html [R=301,L]
39
40 # ----------------------------------------------------------------------------------
41 # Configure the gateway and translator
42 # ----------------------------------------------------------------------------------
43 OSRFGatewayConfig @sysconfdir@/opensrf_core.xml
44 OSRFTranslatorConfig @sysconfdir@/opensrf_core.xml
45 # Translator memcache server.  Default is localhost
46 # OSRFTranslatorCacheServer 127.0.0.1:11211
47
48 # ----------------------------------------------------------------------------------
49 # Log redaction
50 # ----------------------------------------------------------------------------------
51 <Location />
52     # handler for redacting URL query parameters from
53     # the access log
54     PerlLogHandler OpenILS::WWW::EGWeb::log_handler
55     PerlAddVar OILSUrlParamToRedact "geographic-location"
56 </Location>
57
58 # ----------------------------------------------------------------------------------
59 # Added content plugin
60 # ----------------------------------------------------------------------------------
61 <Location /opac/extras/ac/>
62     SetHandler perl-script
63     PerlHandler OpenILS::WWW::AddedContent
64     Options +ExecCGI
65     PerlSendHeader On
66     Require all granted 
67 </Location>
68
69 # Lock clearing cache down to STAFF_LOGIN
70 <Location /opac/extras/ac/clearcache/>
71     PerlAccessHandler OpenILS::WWW::AccessHandler
72     PerlSetVar OILSAccessHandlerPermission "STAFF_LOGIN"
73 </Location>
74
75 # Autosuggest for searches
76 <Location /opac/extras/autosuggest>
77     SetHandler perl-script
78     PerlHandler OpenILS::WWW::AutoSuggest
79     PerlSendHeader On
80     Require all granted 
81 </Location>
82
83 # Flattener service
84 <Location /opac/extras/flattener>
85     SetHandler perl-script
86     PerlHandler OpenILS::WWW::FlatFielder
87     PerlSendHeader On
88     Require all granted 
89 </Location>
90
91 # Uncomment this section to enable the OAI2 provider service.
92 #<Location /opac/extras/oai>
93 #    SetHandler perl-script
94 #    PerlHandler OpenILS::WWW::SuperCat::OAI
95 #    Options +ExecCGI
96 #    PerlSendHeader On
97 #    Require all granted
98 #</Location>
99
100 # ----------------------------------------------------------------------------------
101 # Replace broken cover images with a transparent GIF by default
102 # ----------------------------------------------------------------------------------
103 RewriteEngine ON
104 RewriteRule ^/opac/extras/ac/jacket/(small|medium|large)/$ \
105     /opac/images/blank.png [P,L]
106
107 <Location /opac/extras/ac/jacket>
108         ErrorDocument 404 /opac/images/blank.png
109 </Location>
110
111 # Uncomment one or more of these to have a "no image" image other than the blank
112 # image above.
113
114 # Note: There are no default images provided for these, you will need to provide
115 # your own "no image" image(s).
116
117 #<Location /opac/extras/ac/jacket/small>
118 #        ErrorDocument 404 /opac/images/noimage_small.png
119 #</Location>
120
121 #<Location /opac/extras/ac/jacket/medium>
122 #        ErrorDocument 404 /opac/images/noimage_medium.png
123 #</Location>
124
125 #<Location /opac/extras/ac/jacket/large>
126 #        ErrorDocument 404 /opac/images/noimage_large.png
127 #</Location>
128
129 # ----------------------------------------------------------------------------------
130 # Add the row ID (RID) and date so we can make unAPI happy
131 # ----------------------------------------------------------------------------------
132 RewriteCond %{QUERY_STRING} (^r|&r)=(\d+)
133 RewriteRule . - [E=OILS_OPAC_RID:%2,E=OILS_TIME_YEAR:%{TIME_YEAR}]
134
135 # ----------------------------------------------------------------------------------
136 # Pull the locale from the URL
137 # ----------------------------------------------------------------------------------
138 RewriteCond %{REQUEST_URI} ^/opac/(.*?)/
139 RewriteRule . - [E=locale:%1]
140
141 # ----------------------------------------------------------------------------------
142 # Rewrite JSPac->TPac with redirects
143 # ----------------------------------------------------------------------------------
144 # My Account
145 RewriteRule /opac/[^/]*/skin/default/xml/myopac.xml %{REQUEST_SCHEME}://%{HTTP_HOST}/eg/opac/myopac/main?%{ENV:OILS_JSPAC_SEARCH_TYPE}%{ENV:OILS_JSPAC_SEARCH_TERMS}%{ENV:OILS_JSPAC_SEARCH_LOCATION} [NE,R,L]
146
147 # -----------------------------------------------------------------------------$
148 # Force HTTPS for /eg/circ/selfcheck
149 # -----------------------------------------------------------------------------$
150 RewriteCond %{HTTPS} off
151 RewriteRule ^(/eg/circ/selfcheck) https://%{HTTP_HOST}%{REQUEST_URI} [NC,R=301,L]
152
153 # ----------------------------------------------------------------------------------
154 # For sanity reasons, default indexes to Off
155 # ----------------------------------------------------------------------------------
156 Options -Indexes
157
158 # ----------------------------------------------------------------------------------
159 # Configure the OPAC
160 # ----------------------------------------------------------------------------------
161 <LocationMatch /opac/>
162     SSILegacyExprParser on
163     AddType application/xhtml+xml .xml
164    
165     # - configure mod_xmlent
166     XMLEntStripPI "yes"
167     XMLEntEscapeScript "no"
168     XMLEntStripComments "yes"
169     XMLEntContentType "text/html; charset=utf-8"
170     # forces quirks mode which we want for now
171     XMLEntStripDoctype "yes" 
172
173     # - set up the include handlers
174     Options +Includes
175     AddOutputFilter INCLUDES .xsl
176     AddOutputFilter INCLUDES;XMLENT .xml
177                     
178     SetEnvIf Request_URI ".*" OILS_OPAC_BASE=/opac/
179     
180     # This gives you the option to configure a different host to serve OPAC images from
181     # Specify the hostname (without protocol) and path to the images.  Protocol will
182     # be determined at runtime
183     #SetEnvIf Request_URI ".*" OILS_OPAC_IMAGES_HOST=static.example.org/opac/
184
185     # In addition to loading images from a static host, you can also load CSS and/or
186     # Javascript from a static host or hosts. Protocol will be determined at runtime
187     # and/or by configuration options immediately following.
188     #SetEnvIf Request_URI ".*" OILS_OPAC_CSS_HOST=static.example.org/opac/
189     #SetEnvIf Request_URI ".*" OILS_OPAC_JS_HOST=static.example.org/opac/
190
191     # If you are not able to serve static content via https and 
192     # wish to force http:// (and are comfortable with mixed-content
193     # warnings in client browsers), set this:
194     #SetEnvIf Request_URI ".*" OILS_OPAC_STATIC_PROTOCOL=http
195
196     # If you would prefer to fall back to your non-static servers for 
197     # https pages, avoiding mixed-content warnings in client browsers
198     # and are willing to accept some increased server load, set this:
199     #SetEnvIf Request_URI ".*" OILS_OPAC_BYPASS_STATIC_FOR_HTTPS=yes
200
201     # Specify a ChiliFresh account to integrate their services with the OPAC
202     #SetEnv OILS_CHILIFRESH_ACCOUNT
203     #SetEnv OILS_CHILIFRESH_PROFILE
204     #SetEnv OILS_CHILIFRESH_URL http://chilifresh.com/on-site/js/evergreen.js
205     #SetEnv OILS_CHILIFRESH_HTTPS_URL https://secure.chilifresh.com/on-site/js/evergreen.js
206
207     # Specify the initial script URL for Novelist (containing account credentials, etc.)
208     #SetEnv OILS_NOVELIST_URL
209     #SetEnv OILS_NOVELIST_PROFILE
210     #SetEnv OILS_NOVELIST_PASSWORD
211
212     # Uncomment to force SSL any time a patron is logged in.  This protects 
213     # authentication tokens.  Left commented out for backwards compat for now.
214     #SetEnv OILS_OPAC_FORCE_LOGIN_SSL 1
215
216     # If set, the skin uses the combined JS file at $SKINDIR/js/combined.js
217     #SetEnv OILS_OPAC_COMBINED_JS 1
218
219 </LocationMatch>
220
221 <Location /opac/>
222     # ----------------------------------------------------------------------------------
223     # Some mod_deflate fun
224     # ----------------------------------------------------------------------------------
225     <IfModule mod_deflate.c>
226         SetOutputFilter DEFLATE
227
228         BrowserMatch ^Mozilla/4 gzip-only-text/html
229         BrowserMatch ^Mozilla/4\.0[678] no-gzip
230         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
231
232         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
233
234         <IfModule mod_headers.c>
235             Header append Vary User-Agent env=!dont-vary
236         </IfModule>
237     </IfModule>
238
239 </Location>
240
241 <Location //opac/>
242     # ----------------------------------------------------------------------------------
243     # Some mod_deflate fun
244     # ----------------------------------------------------------------------------------
245     <IfModule mod_deflate.c>
246         SetOutputFilter DEFLATE
247
248         BrowserMatch ^Mozilla/4 gzip-only-text/html
249         BrowserMatch ^Mozilla/4\.0[678] no-gzip
250         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
251
252         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
253
254         <IfModule mod_headers.c>
255             Header append Vary User-Agent env=!dont-vary
256         </IfModule>
257     </IfModule>
258
259 </Location>
260
261 # ----------------------------------------------------------------------------------
262 # Force SSL on the OPAC's "My Account" page
263 # ----------------------------------------------------------------------------------
264 <LocationMatch .*/myopac.xml>
265     SSLRequireSSL
266 </LocationMatch>
267
268 RewriteCond %{QUERY_STRING} locale=([^&]*)
269 RewriteRule ^/opac/[a-z]{2}-[A-Z]{2}/extras/slimpac/(.*)$ %{REQUEST_SCHEME}://%{HTTP_HOST}/opac/%1/extras/slimpac/$1? [redirect]
270 <LocationMatch /opac/[a-z]{2}-[A-Z]{2}/extras/slimpac/>
271     AddOutputFilter INCLUDES;XMLENT .html
272 </LocationMatch>
273
274 # ----------------------------------------------------------------------------------
275 # Run server-side XUL and XHTML through xmlent to load the correct XML entities
276 # ----------------------------------------------------------------------------------
277 RewriteCond %{HTTP:Accept-Language} ^([a-z]{2}-[A-Z]{2})$
278 # Default to en-US if we haven't matched a locale of the form xx-YY 
279 RewriteRule .? - [S=4]
280 RewriteRule ^/xul/      -       [E=locale:en-US]
281 RewriteRule ^/reports/  -       [E=locale:en-US]
282 RewriteRule .? - [E=locale:en-US]
283 RewriteRule .? - [S=3]
284 # Otherwise, set our real locale
285 RewriteRule ^/xul/      -       [E=locale:%{HTTP:Accept-Language}]
286 RewriteRule ^/reports/  -       [E=locale:%{HTTP:Accept-Language}]
287 RewriteRule .? - [E=locale:%{HTTP:Accept-Language}]
288
289 <LocationMatch /xul/.*\.x?html$>
290     SSILegacyExprParser on
291     Options +Includes
292     XMLEntEscapeScript "no"
293     XMLEntStripComments "yes"
294     XMLEntStripPI "yes"
295     XMLEntStripDoctype "yes"
296     XMLEntContentType "text/html; charset=utf-8"
297     AddOutputFilter INCLUDES;XMLENT .xhtml
298     AddOutputFilter INCLUDES;XMLENT .html
299     SetEnv no-gzip
300     Require all granted 
301 </LocationMatch>
302
303
304 <LocationMatch /xul/.*\.xul$>
305     SSILegacyExprParser on
306     Options +Includes
307     XMLEntContentType "application/vnd.mozilla.xul+xml"
308     AddOutputFilter INCLUDES;XMLENT .xul
309     SetEnv no-gzip
310     Require all granted 
311 </LocationMatch>
312
313 # ----------------------------------------------------------------------------------
314 # Supercat feeds
315 # ----------------------------------------------------------------------------------
316 <Location /opac/extras/oisbn>
317     SetHandler perl-script
318     PerlHandler OpenILS::WWW::SuperCat::oisbn
319     Options +ExecCGI
320     PerlSendHeader On
321     Require all granted 
322 </Location>
323 <Location /opac/extras/supercat>
324     SetHandler perl-script
325     PerlHandler OpenILS::WWW::SuperCat::supercat
326     Options +ExecCGI
327     PerlSendHeader On
328     Require all granted 
329 </Location>
330 <Location /opac/extras/unapi>
331     SetHandler perl-script
332     PerlHandler OpenILS::WWW::SuperCat::unapi
333     Options +ExecCGI
334     PerlSendHeader On
335     Require all granted 
336 </Location>
337 <Location /opac/extras/feed/bookbag>
338     SetHandler perl-script
339     PerlHandler OpenILS::WWW::SuperCat::bookbag_feed
340     Options +ExecCGI
341     PerlSendHeader On
342     Require all granted 
343 </Location>
344 <Location /opac/extras/opensearch>
345     SetHandler perl-script
346     PerlHandler OpenILS::WWW::SuperCat::opensearch_feed
347     Options +ExecCGI
348     PerlSendHeader On
349     Require all granted 
350 </Location>
351 <Location /opac/extras/sru>
352     SetHandler perl-script
353     PerlHandler OpenILS::WWW::SuperCat::sru_search
354     Options +ExecCGI
355     PerlSendHeader On
356     Require all granted 
357 </Location>
358 <Location /opac/extras/sru_auth>
359     SetHandler perl-script
360     PerlHandler OpenILS::WWW::SuperCat::sru_auth_search
361     Options +ExecCGI
362     PerlSendHeader On
363     Require all granted 
364 </Location>
365 <Location /opac/extras/feed/freshmeat>
366     SetHandler perl-script
367     PerlHandler OpenILS::WWW::SuperCat::changes_feed
368     Options +ExecCGI
369     PerlSendHeader On
370     Require all granted 
371 </Location>
372 <Location /opac/extras/browse>
373     SetHandler perl-script
374     PerlHandler OpenILS::WWW::SuperCat::string_browse
375     Options +ExecCGI
376     PerlSendHeader On
377     Require all granted 
378 </Location>     
379 <Location /opac/extras/startwith>
380     SetHandler perl-script
381     PerlHandler OpenILS::WWW::SuperCat::string_startwith
382     Options +ExecCGI
383     PerlSendHeader On
384     Require all granted 
385 </Location>     
386         
387 # ----------------------------------------------------------------------------------
388 # Module for displaying OpenSRF API documentation
389 # ----------------------------------------------------------------------------------
390 <Location /opac/extras/docgen.xsl>
391     AddOutputFilter INCLUDES .xsl
392 </Location>
393
394 # ----------------------------------------------------------------------------------
395 # Module for processing staff-client offline scripts lives here
396 # ----------------------------------------------------------------------------------
397 <Directory "@localstatedir@/cgi-bin/offline">
398     AddHandler cgi-script .pl
399     AllowOverride None
400     Options +ExecCGI
401     Require all granted 
402 </Directory>
403         
404         
405 # ----------------------------------------------------------------------------------
406 # XXX Note, it's important to explicitly set the JSON encoding style 
407 # (OSRFGatewayLegacyJSON), since the default encoding style will likely change 
408 # with OpenSRF 1.0
409 # ----------------------------------------------------------------------------------
410 # OpenSRF JSON legacy gateway
411 # ----------------------------------------------------------------------------------
412 <Location /gateway>
413     SetHandler osrf_json_gateway_module
414     OSRFGatewayLegacyJSON "true"
415     Require all granted 
416 </Location>
417 # ----------------------------------------------------------------------------------
418 # New-style OpenSRF JSON gateway
419 # ----------------------------------------------------------------------------------
420 <Location /osrf-gateway-v1>
421     SetHandler osrf_json_gateway_module
422     OSRFGatewayLegacyJSON "false"
423     Require all granted 
424 </Location>
425
426 # ----------------------------------------------------------------------------------
427 # OpenSRF-over-HTTP translator
428 # (http://open-ils.org/dokuwiki/doku.php?id=opensrf_over_http)
429 # ----------------------------------------------------------------------------------
430
431 # OPTIONAL: Running the translator behind a proxy requires accessing
432 # the client IP address via mod_remoteip (sudo a2enmod remoteip).
433 # Below is a sample configuration for a proxy running on the same
434 # server and passing the client IP address via the X-Forwarded-For header.
435 #
436 #RemoteIPInternalProxy 127.0.0.1/24
437 #RemoteIPInternalProxy ::1
438 #RemoteIPHeader X-Forwarded-For
439
440 <Location /osrf-http-translator>
441     SetHandler osrf_http_translator_module
442     Require all granted 
443 </Location>
444
445 # ----------------------------------------------------------------------------------
446 # The exporter lives here
447 # ----------------------------------------------------------------------------------
448 <Location /exporter>
449     SetHandler perl-script
450     AuthType Basic
451     AuthName "Exporter Login"
452     PerlOptions +GlobalRequest
453     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
454     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
455     Require valid-user
456     PerlHandler OpenILS::WWW::Exporter
457     Options +ExecCGI
458     PerlSendHeader On
459 </Location>
460
461 <Location /opac/extras/merge_template>
462     SetHandler perl-script
463     AuthType Basic
464     AuthName "Batch Update Login"
465     PerlOptions +GlobalRequest
466     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
467     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
468     Require valid-user
469     PerlHandler OpenILS::WWW::TemplateBatchBibUpdate
470     PerlSendHeader On
471     Options +ExecCGI
472 </Location>
473
474 <Location /opac/extras/circ>
475     AuthType Basic
476     AuthName "Circ Extras Login"
477     PerlOptions +GlobalRequest
478     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
479     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
480     Require valid-user
481     Options +ExecCGI
482     PerlSendHeader On
483 </Location>
484
485 <Location /collections>
486     SetHandler perl-script
487     AuthType Basic
488     AuthName "Collections Login"
489     PerlOptions +GlobalRequest
490     PerlSetVar OILSProxyPermissions "money.collections_tracker.create"
491     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
492     Require valid-user
493     Options +ExecCGI
494     PerlSendHeader On
495 </Location>
496
497 # ----------------------------------------------------------------------------------
498 # Protect Standalone/Offline mode files from public view
499 # ----------------------------------------------------------------------------------
500 <Location /standalone/>
501     AuthType Basic
502     AuthName "Standalone Mode Login"
503     PerlOptions +GlobalRequest
504     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
505     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
506     Require valid-user
507     PerlSendHeader On
508     allow from all
509     SSLRequireSSL
510 </Location>
511
512 # ----------------------------------------------------------------------------------
513 # Reporting output lives here
514 # ----------------------------------------------------------------------------------
515 <Location /reporter/>
516     AuthType Basic
517     AuthName "Report Login"
518     PerlOptions +GlobalRequest
519     PerlSetVar OILSProxyPermissions "VIEW_REPORT_OUTPUT"
520     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
521     Require valid-user
522     Options +ExecCGI
523     PerlSendHeader On
524 </Location>
525
526 # ----------------------------------------------------------------------------------
527 # Reports GUI
528 # ----------------------------------------------------------------------------------
529 <LocationMatch /reports.*\.x?html>
530     SSILegacyExprParser on
531     Options +Includes
532     XMLEntContentType "text/html; charset=utf-8"
533     AddOutputFilter INCLUDES;XMLENT .xhtml
534     AddOutputFilter INCLUDES;XMLENT .html
535 </LocationMatch>
536
537 <LocationMatch /reports>
538     SSILegacyExprParser on
539     Options +Includes
540     AddOutputFilter INCLUDES;XMLENT .xhtml
541 </LocationMatch>
542
543 # capture locale CGI param for /reports/fm_IDL.xml
544 RewriteCond %{REQUEST_URI} ^/reports/fm_IDL.xml
545 RewriteCond %{QUERY_STRING} locale=([^&;]*)
546 RewriteRule . - [E=locale:%1]
547
548 <LocationMatch /reports/fm_IDL.xml>
549     IDLChunkStripPI "yes"
550     IDLChunkEscapeScript "no"
551     IDLChunkStripComments "yes"
552     IDLChunkStripDoctype "yes"
553     IDLChunkContentType "application/xml; charset=utf-8"
554     AddOutputFilter INCLUDES;IDLCHUNK .xml
555     SetEnv no-gzip
556 </LocationMatch>
557
558 # ----------------------------------------------------------------------------------
559 # EDI Message viewer
560 # ----------------------------------------------------------------------------------
561 <Location /edi>
562     SetHandler perl-script
563     PerlHandler OpenILS::WWW::EDI
564     Options +ExecCGI
565     PerlSendHeader On
566     Require all granted 
567 </Location>     
568
569 # ----------------------------------------------------------------------------------
570 # XML-RPC gateway
571 # ----------------------------------------------------------------------------------
572 <Location /xml-rpc>
573     SetHandler perl-script
574     PerlHandler OpenILS::WWW::XMLRPCGateway
575     Options +ExecCGI
576     PerlSendHeader On
577     Require all granted 
578     <IfModule mod_headers.c>
579         Header onsuccess set Cache-Control no-cache
580     </IfModule>
581 </Location>
582
583 # ----------------------------------------------------------------------------------
584 # Conify - next-generation Evergreen administration interface
585 # ----------------------------------------------------------------------------------
586 RewriteRule ^/conify/([a-z]{2}-[A-Z]{2})/global/(.*)$ /conify/global/$2 [E=locale:$1,L]
587 <Location /conify>
588     SSILegacyExprParser on
589     Options +Includes
590     XMLEntStripPI "yes"
591     XMLEntEscapeScript "no"
592     XMLEntStripComments "no"
593     XMLEntContentType "text/html; charset=utf-8"
594     AddOutputFilter INCLUDES;XMLENT .html
595  
596     AuthType Basic
597     AuthName "Dojo Admin Login"
598     PerlOptions +GlobalRequest
599     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
600     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
601     Require valid-user
602     Options +ExecCGI
603     PerlSendHeader On
604 </Location>
605
606 # ----------------------------------------------------------------------------------
607 # The PhoneList lives here
608 # ----------------------------------------------------------------------------------
609 <Location /phonelist>
610     SetHandler perl-script
611     AuthType Basic
612     AuthName "PhoneList Login"
613     Require valid-user
614     PerlOptions +GlobalRequest
615     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
616     PerlHandler OpenILS::WWW::PhoneList
617     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
618     Options +ExecCGI
619     PerlSendHeader On
620     <IfModule mod_headers.c>
621         Header onsuccess set Cache-Control no-cache
622     </IfModule>
623 </Location>
624 <Location /vandelay-upload>
625     SetHandler perl-script
626     PerlHandler OpenILS::WWW::Vandelay::spool_marc
627     Options +ExecCGI
628     Require all granted 
629 </Location>
630 <Location /jacket-upload>
631     SetHandler perl-script
632     PerlHandler OpenILS::WWW::Vandelay::spool_jacket
633     Options +ExecCGI
634     Require all granted 
635 </Location>
636
637 # OpenURL 0.1 searching based on OpenSearch
638 RewriteMap openurl prg:@bindir@/openurl_map.pl
639 RewriteCond %{QUERY_STRING} (^.*$)
640 RewriteRule ^/openurl$ ${openurl:%1} [NE,PT]
641
642
643
644 # General Evergreen web template processor
645 <Location /eg>
646     SetHandler perl-script
647     PerlHandler OpenILS::WWW::EGWeb
648     Options +ExecCGI
649     PerlSendHeader On
650     Require all granted 
651
652     PerlSetVar OILSWebBasePath "/eg"
653     PerlSetVar OILSWebWebDir "@localstatedir@/web"
654     PerlSetVar OILSWebDefaultTemplateExtension "tt2"
655
656     # Port Apache listens on for HTTP traffic.  Used for HTTP requests 
657     # routed from Perl handlers back to the same Apache instance, like
658     # added content requests.  Use this when running Apache with a 
659     # non-standard port, typical with a proxy setup.  Defaults to "80".
660     # PerlSetVar OILSWebInternalHTTPPort "7080"
661
662     # Enable Template-Toolkit error debugging messages (apache error log)
663     PerlSetVar OILSWebDebugTemplate "false"
664     # local cache of compiled Template Toolkit templates
665     PerlSetVar OILSWebCompiledTemplateCache "/tmp/eg_template_cache"
666     # template TTL - how long, in seconds, that Template Toolkit
667     # waits to check for updated template files
668     #PerlSetVar OILSWebTemplateStatTTL 60
669
670     # -------------------------------------------------------
671     # Media Prefix.  In the 3rd example, the protocol (http) is enforced
672     #PerlSetVar OILSWebMediaPrefix "/media"
673     #PerlSetVar OILSWebMediaPrefix "static.example.com/media"
674     #PerlSetVar OILSWebMediaPrefix "http://static.example.com/media"
675
676     # Locale messages files:
677     #
678     # These appear in pairs; the first represents the user agent
679     # Accept-Language header locale, and the second represents
680     # the fully-qualified path for the corresponding PO file that
681     # contains the messages.
682     #
683     # If you enable two or more locales, then users will be able to
684     # select their preferred locale from a locale picker in the Bootstrap OPAC.
685     #
686     #PerlAddVar OILSWebLocale "en"
687     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/bootstrap-opac/messages.en.po"
688     #PerlAddVar OILSWebLocale "en_ca"
689     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/bootstrap-opac/en-CA.po"
690     #PerlAddVar OILSWebLocale "fr_ca"
691     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/bootstrap-opac/fr-CA.po"
692
693     # If you're using the TPAC OPAC, you should instead set the locales
694     # like this:
695     #PerlAddVar OILSWebLocale "en"
696     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/opac/messages.en.po"
697     #PerlAddVar OILSWebLocale "en_ca"
698     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/opac/en-CA.po"
699     #PerlAddVar OILSWebLocale "fr_ca"
700     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/opac/fr-CA.po"
701
702     # Set the default locale: defaults to en-US
703     #PerlAddVar OILSWebDefaultLocale "fr_ca"
704     
705     # Templates will be loaded from the following paths in reverse order.
706     PerlAddVar OILSWebTemplatePath "@localstatedir@/templates"
707     PerlAddVar OILSWebTemplatePath "@localstatedir@/templates-bootstrap" # Comment this line out to use the legacy TPAC
708     #PerlAddVar OILSWebTemplatePath "@localstatedir@/templates_localskin"
709
710     #-------------------------------------------------
711     # Added Content Configuration
712     #-------------------------------------------------
713     # Content Cafe
714     #SetEnv OILS_CONTENT_CAFE_USER MYUSER
715     #SetEnv OILS_CONTENT_CAFE_PASS MYPASS
716     
717     # LibraryThing
718     #SetEnv OILS_LIBRARYTHING_URL http://ltfl.librarything.com/forlibraries/widget.js?id=MYID
719     #SetEnv OILS_LIBRARYTHING_HTTPS_URL https://ltfl.librarything.com/forlibraries/widget.js?id=MYID
720     
721     # ChiliFresh
722     #SetEnv OILS_CHILIFRESH_ACCOUNT
723     #SetEnv OILS_CHILIFRESH_URL http://chilifresh.com/on-site/js/evergreen.js
724     #SetEnv OILS_CHILIFRESH_HTTPS_URL https://secure.chilifresh.com/on-site/js/evergreen.js
725
726     # Novelist
727     # SetEnv OILS_NOVELIST_URL http://imageserver.ebscohost.com/novelistselect/ns2init.js
728     # SetEnv OILS_NOVELIST_PROFILE <profile>
729     # SetEnv OILS_NOVELIST_PASSWORD <password>
730
731     #-------------------------------------------------
732
733     <IfModule mod_deflate.c>
734         SetOutputFilter DEFLATE
735         BrowserMatch ^Mozilla/4 gzip-only-text/html
736         BrowserMatch ^Mozilla/4\.0[678] no-gzip
737         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
738         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
739         <IfModule mod_headers.c>
740             Header append Cache-Control "public"
741             Header append Vary User-Agent env=!dont-vary
742         </IfModule>
743     </IfModule>
744 </Location>
745 <LocationMatch ^/(images|css|js)/>
746     # should pick up the default expire time from eg.conf...
747     <IfModule mod_deflate.c>
748         SetOutputFilter DEFLATE
749         BrowserMatch ^Mozilla/4 gzip-only-text/html
750         BrowserMatch ^Mozilla/4\.0[678] no-gzip
751         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
752         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
753         <IfModule mod_headers.c>
754             Header append Cache-Control "public"
755             Header append Vary User-Agent env=!dont-vary
756         </IfModule>
757     </IfModule>
758 </LocationMatch>
759 <Location /eg/opac>
760     # Uncomment the entries below to enable Shibboleth authentication
761     #AuthType shibboleth
762     #Require shibboleth
763
764     PerlSetVar OILSWebContextLoader "OpenILS::WWW::EGCatLoader"
765     # Expire the HTML quickly since we're loading dynamic data for each page
766     ExpiresActive On
767     ExpiresByType text/html "access plus 5 seconds"
768 </Location>
769 <Location /eg/kpac>
770     PerlSetVar OILSWebContextLoader "OpenILS::WWW::EGKPacLoader"
771     PerlSetVar KPacConfigFile "@sysconfdir@/kpac.xml.example"
772     ExpiresActive On
773     ExpiresByType text/html "access plus 5 seconds"
774 </Location>
775
776 # Note: the template processor will decline handling anything it does not
777 # have an explicit configuration for, which means it will fall back to 
778 # Apache to serve the file.  However, in the interest of speed, go ahead 
779 # and tell Apache to avoid asking OpenILS::WWW::EGWeb for static content.
780 # Add more exemptions as needed.
781 <LocationMatch ^/eg/.*(\.js|\.html|\.xhtml|\.xml|\.jpg|\.png|\.gif)$>
782     SetHandler None
783 </LocationMatch>
784
785 # ----------------------------------------------------------------------------------
786 # Some mod_deflate setup
787 # ----------------------------------------------------------------------------------
788 <IfModule mod_deflate.c>
789
790     ## optional logging for mod_deflate debugging
791     ##DeflateFilterNote Input instream
792     ##DeflateFilterNote Output outstream
793     ##DeflateFilterNote Ratio ratio
794     ##
795     ##LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
796     ##CustomLog /var/log/apache2/deflate_log deflate
797
798     # There are problems with XMLENT and mod_deflate - so lets disable it
799     # This is where we don't have a pre-existing LocationMatch directive earlier
800     <LocationMatch /opac/.*\.xml$>
801         SetEnv no-gzip
802     </LocationMatch>
803     <LocationMatch /opac/[a-z]{2}-[A-Z]{2}/extras/slimpac/.*\.html$>
804         SetEnv no-gzip
805     </LocationMatch>
806     <LocationMatch /reports/.*\.xhtml$>
807         SetEnv no-gzip
808     </LocationMatch>
809     <LocationMatch /conify/.*\.html$>
810         SetEnv no-gzip
811     </LocationMatch>
812 </IfModule>
813
814 <Location /print_template>
815     SetHandler perl-script
816     PerlHandler OpenILS::WWW::PrintTemplate
817     Options +ExecCGI
818     PerlSendHeader On
819     Require all granted 
820 </Location>
821
822
823 <Location /IDL2js>
824
825     SetHandler perl-script
826     PerlHandler OpenILS::WWW::IDL2js
827     Options +ExecCGI
828     PerlSendHeader On
829     Require all granted 
830
831     <IfModule mod_headers.c>
832         Header append Cache-Control "public"
833     </IFModule>
834
835     <IfModule mod_deflate.c>
836         SetOutputFilter DEFLATE
837         BrowserMatch ^Mozilla/4 gzip-only-text/html
838         BrowserMatch ^Mozilla/4\.0[678] no-gzip
839         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
840         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
841         <IfModule mod_headers.c>
842             Header append Vary User-Agent env=!dont-vary
843         </IfModule>
844     </IfModule>
845 </Location>
846
847 <LocationMatch /eg/staff/>
848     Options -MultiViews
849     PerlSetVar OILSWebStopAtIndex "true"
850
851     RewriteCond %{HTTPS} off
852     RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [NE,R,L]
853
854     # sample staff-specific translation files
855     #PerlAddVar OILSWebLocale "en_ca"
856     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/staff/en-CA.po"
857     #PerlAddVar OILSWebLocale "fr_ca"
858     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/staff/fr-CA.po"
859 </LocationMatch>
860
861 <Location /js/>
862     <IfModule mod_headers.c>
863         Header append Cache-Control "public"
864     </IFModule>
865     <IfModule mod_deflate.c>
866         SetOutputFilter DEFLATE
867         BrowserMatch ^Mozilla/4 gzip-only-text/html
868         BrowserMatch ^Mozilla/4\.0[678] no-gzip
869         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
870         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
871         <IfModule mod_headers.c>
872             Header append Vary User-Agent env=!dont-vary
873         </IfModule>
874     </IfModule>
875 </Location>
876
877 <Location /api/basicauth>
878     SetHandler perl-script
879     PerlHandler OpenILS::WWW::RemoteAuth
880     Options +ExecCGI
881
882     # access restricted to localhost by default; since this module provides no
883     # client authentiation, restricting access by IP or other means is stongly
884     # recommended
885     Require local
886
887     # remoteauth profile name
888     PerlSetVar OILSRemoteAuthProfile "Basic"
889     # Perl module for processing requests
890     PerlSetVar OILSRemoteAuthHandler "OpenILS::WWW::RemoteAuth::Basic"
891
892     # staff username/password for config lookup and patron retrieval
893     PerlSetVar OILSRemoteAuthClientUsername "admin"
894     PerlSetVar OILSRemoteAuthClientPassword "demo123"
895 </Location>
896
897 <Location /api/ezproxy>
898     SetHandler perl-script
899     PerlHandler OpenILS::WWW::RemoteAuth
900     Options +ExecCGI
901
902     # access restricted to localhost by default; since this module provides no
903     # client authentiation, restricting access by IP or other means is stongly
904     # recommended
905     Require local
906
907     # remoteauth profile name
908     PerlSetVar OILSRemoteAuthProfile "EZProxyCGI"
909     # Perl module for processing requests
910     PerlSetVar OILSRemoteAuthHandler "OpenILS::WWW::RemoteAuth::EZProxyCGI"
911
912     # staff username/password for config lookup and patron retrieval
913     PerlSetVar OILSRemoteAuthClientUsername "admin"
914     PerlSetVar OILSRemoteAuthClientPassword "demo123"
915
916     # Location of TT2 templates for EZProxy login form and error pages.
917     # Templates will be loaded from the following paths in reverse order.
918     PerlAddVar OILSRemoteAuthTemplatePath "@localstatedir@/templates/remoteauth/ezproxycgi"
919     #PerlAddVar OILSRemoteAuthTemplatePath "@localstatedir@/templates_localskin/remoteauth/ezproxycgi"
920
921     # Locale (defaults to en_us)
922     #PerlAddVar OILSRemoteAuthLocale "en_us"
923
924     # Base URI of your EZProxy server; be sure there is no trailing slash
925     PerlSetVar OILSRemoteAuthEZProxyBaseURI "http://example.com/ezproxy"
926
927     # shared secret used to generate EZProxy authentication ticket
928     # This should be the same as the value in the MD5 line of your EZProxy users.txt configuration
929     # This default value is not suitable for production!
930     PerlSetVar OILSRemoteAuthEZProxySecret "secret"
931 </Location>
932
933 <Location /api/patronapi>
934     SetHandler perl-script
935     PerlHandler OpenILS::WWW::RemoteAuth
936     Options +ExecCGI
937
938     # access restricted to localhost by default; since this module provides no
939     # client authentication and can be configured to return detailed personal
940     # information, restricting access by IP or other means is stongly
941     # recommended
942     Require local
943
944     # remoteauth profile name
945     PerlSetVar OILSRemoteAuthProfile "PatronAPI"
946     # Perl module for processing requests
947     PerlSetVar OILSRemoteAuthHandler "OpenILS::WWW::RemoteAuth::PatronAPI"
948
949     # staff username/password for config lookup and patron retrieval
950     PerlSetVar OILSRemoteAuthClientUsername "admin"
951     PerlSetVar OILSRemoteAuthClientPassword "demo123"
952
953     # Location of TT2 templates for PatronAPI responses.
954     # Templates will be loaded from the following paths in reverse order.
955     PerlAddVar OILSRemoteAuthTemplatePath "@localstatedir@/templates/remoteauth/patronapi"
956     #PerlAddVar OILSRemoteAuthTemplatePath "@localstatedir@/templates_localskin/remoteauth/patronapi"
957
958     # Locale (defaults to en_us)
959     #PerlAddVar OILSRemoteAuthLocale "en_us"
960
961     # set to "true" to allow retrieval of detailed patron information
962     # without patron authorization
963     PerlSetVar OILSRemoteAuthPatronAPIAllowDump "false"
964
965     # identifier type for patron information requests (/dump)
966     # permitted values: "barcode" (default), "username"
967     #PerlSetVar OILSRemoteAuthPatronAPIIDType "barcode"
968 </Location>
969
970 # Uncomment the following to force SSL for everything. Note that this defeats caching
971 # and you will suffer a performance hit.
972 #RewriteCond %{HTTPS} off
973 #RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [NE,R,L]
974
975 # ------------------------------------------------------------------------
976 # /eg2/ client setup and locale configuration.
977 #
978 # If a valid locale cookie is present that does not match the current
979 # path, redirect to the requested locale path.
980 # Otherwise, if no locale is active, redirect to the default locale.
981
982 # fr-CA
983 #RewriteCond %{REQUEST_URI} ^/eg2/
984 #RewriteCond %{REQUEST_URI} !^/eg2/fr-CA/
985 #RewriteCond %{HTTP_COOKIE} eg_locale=fr_ca
986 #RewriteRule ^/eg2/(.*) https://%{HTTP_HOST}/eg2/fr-CA/$1 [NE,R=307,L]
987
988 # Default / en-US.
989 # No alternate supported cookie provided.
990 RewriteCond %{REQUEST_URI}  ^/eg2/
991 RewriteCond %{REQUEST_URI}  !^/eg2/([a-z]{2}-[A-Z]{2})/
992 RewriteRule ^/eg2/(.*) https://%{HTTP_HOST}/eg2/en-US/$1 [NE,R=307,L]
993
994 # en-US build
995 # This is the only required configuration when only using the default locale.
996 <Directory "@localstatedir@/web/eg2/en-US">
997     FallbackResource /eg2/en-US/index.html
998     <Files "index.html">
999       <IfModule mod_headers.c>
1000         Header set Cache-Control "no-cache, no-store, must-revalidate"
1001         Header set Pragma "no-cache"
1002         Header set Expires 0
1003       </IfModule>
1004     </Files>
1005 </Directory>
1006
1007 # fr-CA build
1008 #<Directory "@localstatedir@/web/eg2/fr-CA">
1009 #    FallbackResource /eg2/fr-CA/index.html
1010 #    <Files "index.html">
1011 #      <IfModule mod_headers.c>
1012 #        Header set Cache-Control "no-cache, no-store, must-revalidate"
1013 #        Header set Pragma "no-cache"
1014 #        Header set Expires 0
1015 #      </IfModule>
1016 #    </Files>
1017 #</Directory>