]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/examples/apache_24/eg_vhost.conf.in
d4bbd785cd9ffc5a5ae14375fe53aabfbab49f32
[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 RedirectMatch 301 ^/$ /eg/opac/home
10
11 # ----------------------------------------------------------------------------------
12 # Point / to the IP address redirector
13 # ----------------------------------------------------------------------------------
14 #<LocationMatch ^/$>
15 #    SetHandler perl-script
16 #    PerlHandler OpenILS::WWW::Redirect
17 #    Options +ExecCGI
18 #    PerlSendHeader On
19 #    #PerlSetVar OILSRedirectSkin "default"
20 #    # OILSRedirectDepth defaults to the depth of the branch that the OPAC was directed to
21 #    #PerlSetVar OILSRedirectDepth "0"
22 #    #PerlSetVar OILSRedirectLocale "en-US"
23 #    # Use the template-toolkit opac
24 #    #PerlSetVar OILSRedirectTpac "true"
25 #    allow from all
26 #</LocationMatch>
27
28
29 # ----------------------------------------------------------------------------------
30 # Assign a default locale to the accessible OPAC
31 # ----------------------------------------------------------------------------------
32 RedirectMatch 301 ^/opac/extras/slimpac/start.html$    /opac/en-US/extras/slimpac/start.html
33 RedirectMatch 301 ^/opac/extras/slimpac/advanced.html$ /opac/en-US/extras/slimpac/advanced.html
34
35 # ----------------------------------------------------------------------------------
36 # Configure the gateway and translator
37 # ----------------------------------------------------------------------------------
38 OSRFGatewayConfig @sysconfdir@/opensrf_core.xml
39 OSRFTranslatorConfig @sysconfdir@/opensrf_core.xml
40 # Translator memcache server.  Default is localhost
41 # OSRFTranslatorCacheServer 127.0.0.1:11211
42
43
44 # ----------------------------------------------------------------------------------
45 # Added content plugin
46 # ----------------------------------------------------------------------------------
47 <Location /opac/extras/ac/>
48     SetHandler perl-script
49     PerlHandler OpenILS::WWW::AddedContent
50     Options +ExecCGI
51     PerlSendHeader On
52     Require all granted 
53 </Location>
54
55 # Autosuggest for searches
56 <Location /opac/extras/autosuggest>
57     SetHandler perl-script
58     PerlHandler OpenILS::WWW::AutoSuggest
59     PerlSendHeader On
60     Require all granted 
61 </Location>
62
63 # Flattener service
64 <Location /opac/extras/flattener>
65     SetHandler perl-script
66     PerlHandler OpenILS::WWW::FlatFielder
67     PerlSendHeader On
68     Require all granted 
69 </Location>
70
71 # ----------------------------------------------------------------------------------
72 # Replace broken cover images with a transparent GIF by default
73 # ----------------------------------------------------------------------------------
74 RewriteEngine ON
75 RewriteRule ^/opac/extras/ac/jacket/(small|medium|large)/$ \
76     /opac/images/blank.png [P,L]
77
78 <Location /opac/extras/ac/jacket>
79         ErrorDocument 404 /opac/images/blank.png
80 </Location>
81
82 # ----------------------------------------------------------------------------------
83 # Add the row ID (RID) and date so we can make unAPI happy
84 # ----------------------------------------------------------------------------------
85 RewriteCond %{QUERY_STRING} (^r|&r)=(\d+)
86 RewriteRule . - [E=OILS_OPAC_RID:%2,E=OILS_TIME_YEAR:%{TIME_YEAR}]
87
88 # ----------------------------------------------------------------------------------
89 # Pull the locale from the URL
90 # ----------------------------------------------------------------------------------
91 RewriteCond %{REQUEST_URI} ^/opac/(.*?)/
92 RewriteRule . - [E=locale:%1]
93
94 # ----------------------------------------------------------------------------------
95 # Rewrite JSPac->TPac with redirects
96 # ----------------------------------------------------------------------------------
97
98 # First things first, extract useful data
99 # And we are going to start with a "this is the JSPac" check on each of these:
100 # RewriteCond %{REQUEST_URI} ^/?opac/
101
102 # Basic (overall) search type, if present
103 # I am cheating and grabbing RT or TP because I dunno the difference between them.
104 RewriteCond %{REQUEST_URI} ^/opac/
105 RewriteCond %{QUERY_STRING} (^|[^0-9a-zA-Z])(rt|tp)=([^;&]*)
106 RewriteRule . - [E=OILS_JSPAC_SEARCH_TYPE:qtype=%3;]
107
108 # Basic (overall) search term(s), if present - NOTE: Not doing advanced search.
109 RewriteCond %{REQUEST_URI} ^/opac/
110 RewriteCond %{QUERY_STRING} (^|[^0-9a-zA-Z])t=([^;&]*)
111 RewriteRule . - [E=OILS_JSPAC_SEARCH_TERMS:query=%2;]
112
113 # Search Location, if present
114 RewriteCond %{REQUEST_URI} ^/opac/
115 RewriteCond %{QUERY_STRING} (^|[^0-9a-zA-Z])l=([^;&]*)
116 RewriteRule . - [E=OILS_JSPAC_SEARCH_LOCATION:locg=%2;]
117
118 # My Account
119 RewriteRule /opac/[^/]*/skin/default/xml/myopac.xml /eg/opac/myopac/main?%{ENV:OILS_JSPAC_SEARCH_TYPE}%{ENV:OILS_JSPAC_SEARCH_TERMS}%{ENV:OILS_JSPAC_SEARCH_LOCATION} [NE,R,L]
120
121 # Record Pages
122 # /opac/en-US/skin/default/xml/rdetail.xml?r=32 -> /eg/opac/record/32
123 RewriteCond %{QUERY_STRING} (^|[^0-9a-zA-Z])r=([^;&]*)
124 RewriteRule /opac/.*/rdetail.xml /eg/opac/record/%2?%{ENV:OILS_JSPAC_SEARCH_TYPE}%{ENV:OILS_JSPAC_SEARCH_TERMS}%{ENV:OILS_JSPAC_SEARCH_LOCATION} [NE,R,L]
125
126 # Bookbag Pages
127 # /opac/extras/feed/bookbag/html-full/1 -> /eg/opac/results?bookbag=1;page=0;locg=1;depth=0
128 RewriteRule /opac/extras/feed/bookbag/html-full/(\d*) /eg/opac/results?bookbag=$1;%{ENV:OILS_JSPAC_SEARCH_TYPE}%{ENV:OILS_JSPAC_SEARCH_TERMS}%{ENV:OILS_JSPAC_SEARCH_LOCATION} [NE,R,L]
129
130 # Search Results Pages
131 RewriteRule /opac/[^/]*/skin/[^/]*/xml/rresult.xml /eg/opac/results?%{ENV:OILS_JSPAC_SEARCH_TYPE}%{ENV:OILS_JSPAC_SEARCH_TERMS}%{ENV:OILS_JSPAC_SEARCH_LOCATION} [NE,R,L]
132
133 # Basic Search (STILL not doing advanced)
134 # Fallback! But only for things that end in xml, htm, or html
135 # Images, CSS, etc can stick around.
136 RewriteRule /opac/[^/]*/skin/.*(xml|htm|html|/)$ /eg/opac/home?%{ENV:OILS_JSPAC_SEARCH_TYPE}%{ENV:OILS_JSPAC_SEARCH_TERMS}%{ENV:OILS_JSPAC_SEARCH_LOCATION} [NE,R,L]
137
138 # -----------------------------------------------------------------------------$
139 # Force HTTPS for /eg/circ/selfcheck
140 # -----------------------------------------------------------------------------$
141 RewriteCond %{HTTPS} off
142 RewriteRule ^(/eg/circ/selfcheck) https://%{HTTP_HOST}%{REQUEST_URI} [NC,R=301,L]
143
144 # ----------------------------------------------------------------------------------
145 # For sanity reasons, default indexes to Off
146 # ----------------------------------------------------------------------------------
147 Options -Indexes
148
149 # ----------------------------------------------------------------------------------
150 # Configure the OPAC
151 # ----------------------------------------------------------------------------------
152 <LocationMatch /opac/>
153     SSILegacyExprParser on
154     AddType application/xhtml+xml .xml
155    
156     # - configure mod_xmlent
157     XMLEntStripPI "yes"
158     XMLEntEscapeScript "no"
159     XMLEntStripComments "yes"
160     XMLEntContentType "text/html; charset=utf-8"
161     # forces quirks mode which we want for now
162     XMLEntStripDoctype "yes" 
163
164     # - set up the include handlers
165     Options +Includes
166     AddOutputFilter INCLUDES .xsl
167     AddOutputFilter INCLUDES;XMLENT .xml
168                     
169     SetEnvIf Request_URI ".*" OILS_OPAC_BASE=/opac/
170     
171     # This gives you the option to configure a different host to serve OPAC images from
172     # Specify the hostname (without protocol) and path to the images.  Protocol will
173     # be determined at runtime
174     #SetEnvIf Request_URI ".*" OILS_OPAC_IMAGES_HOST=static.example.org/opac/
175
176     # In addition to loading images from a static host, you can also load CSS and/or
177     # Javascript from a static host or hosts. Protocol will be determined at runtime
178     # and/or by configuration options immediately following.
179     #SetEnvIf Request_URI ".*" OILS_OPAC_CSS_HOST=static.example.org/opac/
180     #SetEnvIf Request_URI ".*" OILS_OPAC_JS_HOST=static.example.org/opac/
181
182     # If you are not able to serve static content via https and 
183     # wish to force http:// (and are comfortable with mixed-content
184     # warnings in client browsers), set this:
185     #SetEnvIf Request_URI ".*" OILS_OPAC_STATIC_PROTOCOL=http
186
187     # If you would prefer to fall back to your non-static servers for 
188     # https pages, avoiding mixed-content warnings in client browsers
189     # and are willing to accept some increased server load, set this:
190     #SetEnvIf Request_URI ".*" OILS_OPAC_BYPASS_STATIC_FOR_HTTPS=yes
191
192     # Specify a ChiliFresh account to integrate their services with the OPAC
193     #SetEnv OILS_CHILIFRESH_ACCOUNT
194     #SetEnv OILS_CHILIFRESH_PROFILE
195     #SetEnv OILS_CHILIFRESH_URL http://chilifresh.com/on-site/js/evergreen.js
196     #SetEnv OILS_CHILIFRESH_HTTPS_URL https://secure.chilifresh.com/on-site/js/evergreen.js
197
198     # Specify the initial script URL for Novelist (containing account credentials, etc.)
199     #SetEnv OILS_NOVELIST_URL
200     #
201
202     # Uncomment to force SSL any time a patron is logged in.  This protects 
203     # authentication tokens.  Left commented out for backwards compat for now.
204     #SetEnv OILS_OPAC_FORCE_LOGIN_SSL 1
205
206     # If set, the skin uses the combined JS file at $SKINDIR/js/combined.js
207     #SetEnv OILS_OPAC_COMBINED_JS 1
208
209 </LocationMatch>
210
211 <Location /opac/>
212     # ----------------------------------------------------------------------------------
213     # Some mod_deflate fun
214     # ----------------------------------------------------------------------------------
215     <IfModule mod_deflate.c>
216         SetOutputFilter DEFLATE
217
218         BrowserMatch ^Mozilla/4 gzip-only-text/html
219         BrowserMatch ^Mozilla/4\.0[678] no-gzip
220         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
221
222         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
223
224         <IfModule mod_headers.c>
225             Header append Vary User-Agent env=!dont-vary
226         </IfModule>
227     </IfModule>
228
229 </Location>
230
231 <Location //opac/>
232     # ----------------------------------------------------------------------------------
233     # Some mod_deflate fun
234     # ----------------------------------------------------------------------------------
235     <IfModule mod_deflate.c>
236         SetOutputFilter DEFLATE
237
238         BrowserMatch ^Mozilla/4 gzip-only-text/html
239         BrowserMatch ^Mozilla/4\.0[678] no-gzip
240         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
241
242         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
243
244         <IfModule mod_headers.c>
245             Header append Vary User-Agent env=!dont-vary
246         </IfModule>
247     </IfModule>
248
249 </Location>
250
251 # ----------------------------------------------------------------------------------
252 # Force SSL on the OPAC's "My Account" page
253 # ----------------------------------------------------------------------------------
254 <LocationMatch .*/myopac.xml>
255     SSLRequireSSL
256 </LocationMatch>
257
258 <LocationMatch /opac/extras/>
259     SSILegacyExprParser on
260     # Force to en-US for now to satisfy bbags.xml
261     SetEnv locale en-US
262     Options +Includes
263     AddOutputFilter INCLUDES .xml
264     AddType application/xhtml+xml .xml
265 </LocationMatch>
266
267 RewriteCond %{QUERY_STRING} locale=([^&]*)
268 RewriteRule ^/opac/[a-z]{2}-[A-Z]{2}/extras/slimpac/(.*)$ /opac/%1/extras/slimpac/$1? [redirect]
269 <LocationMatch /opac/[a-z]{2}-[A-Z]{2}/extras/slimpac/>
270     AddOutputFilter INCLUDES;XMLENT .html
271 </LocationMatch>
272
273 # ----------------------------------------------------------------------------------
274 # Run server-side XUL and XHTML through xmlent to load the correct XML entities
275 # ----------------------------------------------------------------------------------
276 RewriteCond %{HTTP:Accept-Language} ^([a-z]{2}-[A-Z]{2})$
277 # Default to en-US if we haven't matched a locale of the form xx-YY 
278 RewriteRule .? - [S=4]
279 RewriteRule ^/xul/      -       [E=locale:en-US]
280 RewriteRule ^/reports/  -       [E=locale:en-US]
281 RewriteRule .? - [E=locale:en-US]
282 RewriteRule .? - [S=3]
283 # Otherwise, set our real locale
284 RewriteRule ^/xul/      -       [E=locale:%{HTTP:Accept-Language}]
285 RewriteRule ^/reports/  -       [E=locale:%{HTTP:Accept-Language}]
286 RewriteRule .? - [E=locale:%{HTTP:Accept-Language}]
287
288 <LocationMatch /xul/.*\.x?html$>
289     SSILegacyExprParser on
290     Options +Includes
291     XMLEntEscapeScript "no"
292     XMLEntStripComments "yes"
293     XMLEntStripPI "yes"
294     XMLEntStripDoctype "yes"
295     XMLEntContentType "text/html; charset=utf-8"
296     AddOutputFilter INCLUDES;XMLENT .xhtml
297     AddOutputFilter INCLUDES;XMLENT .html
298     SetEnv no-gzip
299     Require all granted 
300 </LocationMatch>
301
302
303 <LocationMatch /xul/.*\.xul$>
304     SSILegacyExprParser on
305     Options +Includes
306     XMLEntContentType "application/vnd.mozilla.xul+xml"
307     AddOutputFilter INCLUDES;XMLENT .xul
308     SetEnv no-gzip
309     Require all granted 
310 </LocationMatch>
311
312 # ----------------------------------------------------------------------------------
313 # Supercat feeds
314 # ----------------------------------------------------------------------------------
315 <Location /opac/extras/oisbn>
316     SetHandler perl-script
317     PerlHandler OpenILS::WWW::SuperCat::oisbn
318     Options +ExecCGI
319     PerlSendHeader On
320     Require all granted 
321 </Location>
322 <Location /opac/extras/supercat>
323     SetHandler perl-script
324     PerlHandler OpenILS::WWW::SuperCat::supercat
325     Options +ExecCGI
326     PerlSendHeader On
327     Require all granted 
328 </Location>
329 <Location /opac/extras/unapi>
330     SetHandler perl-script
331     PerlHandler OpenILS::WWW::SuperCat::unapi
332     Options +ExecCGI
333     PerlSendHeader On
334     Require all granted 
335 </Location>
336 <Location /opac/extras/feed/bookbag>
337     SetHandler perl-script
338     PerlHandler OpenILS::WWW::SuperCat::bookbag_feed
339     Options +ExecCGI
340     PerlSendHeader On
341     Require all granted 
342 </Location>
343 <Location /opac/extras/opensearch>
344     SetHandler perl-script
345     PerlHandler OpenILS::WWW::SuperCat::opensearch_feed
346     Options +ExecCGI
347     PerlSendHeader On
348     Require all granted 
349 </Location>
350 <Location /opac/extras/sru>
351     SetHandler perl-script
352     PerlHandler OpenILS::WWW::SuperCat::sru_search
353     Options +ExecCGI
354     PerlSendHeader On
355     Require all granted 
356 </Location>
357 <Location /opac/extras/sru_auth>
358     SetHandler perl-script
359     PerlHandler OpenILS::WWW::SuperCat::sru_auth_search
360     Options +ExecCGI
361     PerlSendHeader On
362     Require all granted 
363 </Location>
364 <Location /opac/extras/feed/freshmeat>
365     SetHandler perl-script
366     PerlHandler OpenILS::WWW::SuperCat::changes_feed
367     Options +ExecCGI
368     PerlSendHeader On
369     Require all granted 
370 </Location>
371 <Location /opac/extras/browse>
372     SetHandler perl-script
373     PerlHandler OpenILS::WWW::SuperCat::string_browse
374     Options +ExecCGI
375     PerlSendHeader On
376     Require all granted 
377 </Location>     
378 <Location /opac/extras/startwith>
379     SetHandler perl-script
380     PerlHandler OpenILS::WWW::SuperCat::string_startwith
381     Options +ExecCGI
382     PerlSendHeader On
383     Require all granted 
384 </Location>     
385         
386 # ----------------------------------------------------------------------------------
387 # Module for displaying OpenSRF API documentation
388 # ----------------------------------------------------------------------------------
389 <Location /opac/extras/docgen.xsl>
390     AddOutputFilter INCLUDES .xsl
391 </Location>
392
393 # ----------------------------------------------------------------------------------
394 # Module for processing staff-client offline scripts lives here
395 # ----------------------------------------------------------------------------------
396 <Directory "@localstatedir@/cgi-bin/offline">
397     AddHandler cgi-script .pl
398     AllowOverride None
399     Options +ExecCGI
400     Require all granted 
401 </Directory>
402         
403         
404 # ----------------------------------------------------------------------------------
405 # XXX Note, it's important to explicitly set the JSON encoding style 
406 # (OSRFGatewayLegacyJSON), since the default encoding style will likely change 
407 # with OpenSRF 1.0
408 # ----------------------------------------------------------------------------------
409 # OpenSRF JSON legacy gateway
410 # ----------------------------------------------------------------------------------
411 <Location /gateway>
412     SetHandler osrf_json_gateway_module
413     OSRFGatewayLegacyJSON "true"
414     Require all granted 
415 </Location>
416 # ----------------------------------------------------------------------------------
417 # New-style OpenSRF JSON gateway
418 # ----------------------------------------------------------------------------------
419 <Location /osrf-gateway-v1>
420     SetHandler osrf_json_gateway_module
421     OSRFGatewayLegacyJSON "false"
422     Require all granted 
423 </Location>
424
425 # ----------------------------------------------------------------------------------
426 # OpenSRF-over-HTTP translator
427 # (http://open-ils.org/dokuwiki/doku.php?id=opensrf_over_http)
428 # ----------------------------------------------------------------------------------
429 <Location /osrf-http-translator>
430     SetHandler osrf_http_translator_module
431     Require all granted 
432 </Location>
433
434 # ----------------------------------------------------------------------------------
435 # The exporter lives here
436 # ----------------------------------------------------------------------------------
437 <Location /exporter>
438     SetHandler perl-script
439     AuthType Basic
440     AuthName "Exporter Login"
441     PerlOptions +GlobalRequest
442     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
443     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
444     Require valid-user
445     PerlHandler OpenILS::WWW::Exporter
446     Options +ExecCGI
447     PerlSendHeader On
448 </Location>
449
450 <Location /opac/extras/merge_template>
451     SetHandler perl-script
452     AuthType Basic
453     AuthName "Batch Update Login"
454     PerlOptions +GlobalRequest
455     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
456     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
457     Require valid-user
458     PerlHandler OpenILS::WWW::TemplateBatchBibUpdate
459     PerlSendHeader On
460     Options +ExecCGI
461 </Location>
462
463 <Location /opac/extras/circ>
464     AuthType Basic
465     AuthName "Circ Extras Login"
466     PerlOptions +GlobalRequest
467     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
468     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
469     Require valid-user
470     Options +ExecCGI
471     PerlSendHeader On
472 </Location>
473
474 <Location /collections>
475     SetHandler perl-script
476     AuthType Basic
477     AuthName "Collections Login"
478     PerlOptions +GlobalRequest
479     PerlSetVar OILSProxyPermissions "money.collections_tracker.create"
480     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
481     Require valid-user
482     Options +ExecCGI
483     PerlSendHeader On
484 </Location>
485
486 # ----------------------------------------------------------------------------------
487 # Protect Standalone/Offline mode files from public view
488 # ----------------------------------------------------------------------------------
489 <Location /standalone/>
490     AuthType Basic
491     AuthName "Standalone Mode Login"
492     PerlOptions +GlobalRequest
493     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
494     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
495     Require valid-user
496     PerlSendHeader On
497     allow from all
498     SSLRequireSSL
499 </Location>
500
501 # ----------------------------------------------------------------------------------
502 # Reporting output lives here
503 # ----------------------------------------------------------------------------------
504 <Location /reporter/>
505     AuthType Basic
506     AuthName "Report Login"
507     PerlOptions +GlobalRequest
508     PerlSetVar OILSProxyPermissions "VIEW_REPORT_OUTPUT"
509     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
510     Require valid-user
511     Options +ExecCGI
512     PerlSendHeader On
513 </Location>
514
515 # ----------------------------------------------------------------------------------
516 # Selfcheck interface
517 # ----------------------------------------------------------------------------------
518 <LocationMatch .*/selfcheck.xml>
519     AuthType Basic
520     AuthName "Self-check Login"
521     PerlOptions +GlobalRequest
522     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
523     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
524     Require valid-user
525     Options +ExecCGI
526     PerlSendHeader On
527 </LocationMatch>
528
529
530 # ----------------------------------------------------------------------------------
531 # Reports GUI
532 # ----------------------------------------------------------------------------------
533 <LocationMatch /reports>
534     SSILegacyExprParser on
535     Options +Includes
536     AddOutputFilter INCLUDES;XMLENT .xhtml
537 </LocationMatch>
538
539 # capture locale CGI param for /reports/fm_IDL.xml
540 RewriteCond %{REQUEST_URI} ^/reports/fm_IDL.xml
541 RewriteCond %{QUERY_STRING} locale=([^&;]*)
542 RewriteRule . - [E=locale:%1]
543
544 <LocationMatch /reports/fm_IDL.xml>
545     IDLChunkStripPI "yes"
546     IDLChunkEscapeScript "no"
547     IDLChunkStripComments "yes"
548     IDLChunkStripDoctype "yes"
549     IDLChunkContentType "application/xml; charset=utf-8"
550     AddOutputFilter INCLUDES;IDLCHUNK .xml
551     SetEnv no-gzip
552 </LocationMatch>
553
554 # ----------------------------------------------------------------------------------
555 # EDI Message viewer
556 # ----------------------------------------------------------------------------------
557 <Location /edi>
558     SetHandler perl-script
559     PerlHandler OpenILS::WWW::EDI
560     Options +ExecCGI
561     PerlSendHeader On
562     Require all granted 
563 </Location>     
564
565 # ----------------------------------------------------------------------------------
566 # XML-RPC gateway
567 # ----------------------------------------------------------------------------------
568 <Location /xml-rpc>
569     SetHandler perl-script
570     PerlHandler OpenILS::WWW::XMLRPCGateway
571     Options +ExecCGI
572     PerlSendHeader On
573     Require all granted 
574     <IfModule mod_headers.c>
575         Header onsuccess set Cache-Control no-cache
576     </IfModule>
577 </Location>
578
579 # ----------------------------------------------------------------------------------
580 # Conify - next-generation Evergreen administration interface
581 # ----------------------------------------------------------------------------------
582 RewriteRule ^/conify/([a-z]{2}-[A-Z]{2})/global/(.*)$ /conify/global/$2 [E=locale:$1,L]
583 <Location /conify>
584     SSILegacyExprParser on
585     Options +Includes
586     XMLEntStripPI "yes"
587     XMLEntEscapeScript "no"
588     XMLEntStripComments "no"
589     XMLEntContentType "text/html; charset=utf-8"
590     AddOutputFilter INCLUDES;XMLENT .html
591  
592     AuthType Basic
593     AuthName "Dojo Admin Login"
594     PerlOptions +GlobalRequest
595     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
596     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
597     Require valid-user
598     Options +ExecCGI
599     PerlSendHeader On
600 </Location>
601
602 # ----------------------------------------------------------------------------------
603 # The PhoneList lives here
604 # ----------------------------------------------------------------------------------
605 <Location /phonelist>
606     SetHandler perl-script
607     AuthType Basic
608     AuthName "PhoneList Login"
609     Require valid-user
610     PerlOptions +GlobalRequest
611     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
612     PerlHandler OpenILS::WWW::PhoneList
613     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
614     Options +ExecCGI
615     PerlSendHeader On
616     <IfModule mod_headers.c>
617         Header onsuccess set Cache-Control no-cache
618     </IfModule>
619 </Location>
620 <Location /vandelay-upload>
621     SetHandler perl-script
622     PerlHandler OpenILS::WWW::Vandelay::spool_marc
623     Options +ExecCGI
624     Require all granted 
625 </Location>
626
627 # OpenURL 0.1 searching based on OpenSearch
628 RewriteMap openurl prg:@bindir@/openurl_map.pl
629 RewriteCond %{QUERY_STRING} (^.*$)
630 RewriteRule ^/openurl$ ${openurl:%1} [NE,PT]
631
632
633
634 # General Evergreen web template processor
635 <Location /eg>
636     SetHandler perl-script
637     PerlHandler OpenILS::WWW::EGWeb
638     Options +ExecCGI
639     PerlSendHeader On
640     Require all granted 
641
642     PerlSetVar OILSWebBasePath "/eg"
643     PerlSetVar OILSWebWebDir "@localstatedir@/web"
644     PerlSetVar OILSWebDefaultTemplateExtension "tt2"
645
646     # Enable Template-Toolkit error debugging messages (apache error log)
647     PerlSetVar OILSWebDebugTemplate "true"
648
649     # -------------------------------------------------------
650     # Media Prefix.  In the 3rd example, the protocol (http) is enforced
651     #PerlSetVar OILSWebMediaPrefix "/media"
652     #PerlSetVar OILSWebMediaPrefix "static.example.com/media"
653     #PerlSetVar OILSWebMediaPrefix "http://static.example.com/media"
654
655     # Locale messages files:
656     #
657     # These appear in pairs; the first represents the user agent
658     # Accept-Language header locale, and the second represents
659     # the fully-qualified path for the corresponding PO file that
660     # contains the messages.
661     #
662     # If you enable two or more locales, then users will be able to
663     # select their preferred locale from a locale picker in the TPAC.
664     #
665     #PerlAddVar OILSWebLocale "en"
666     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/messages.en.po"
667     #PerlAddVar OILSWebLocale "en_ca"
668     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/en-CA.po"
669     #PerlAddVar OILSWebLocale "fr_ca"
670     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/fr-CA.po"
671
672     # Set the default locale: defaults to en-US
673     #PerlAddVar OILSWebDefaultLocale "fr_ca"
674     
675     # Templates will be loaded from the following paths in reverse order.
676     PerlAddVar OILSWebTemplatePath "@localstatedir@/templates"
677     #PerlAddVar OILSWebTemplatePath "@localstatedir@/templates_localskin"
678
679     #-------------------------------------------------
680     # Added Content Configuration
681     #-------------------------------------------------
682     # Content Cafe
683     #SetEnv OILS_CONTENT_CAFE_USER MYUSER
684     #SetEnv OILS_CONTENT_CAFE_PASS MYPASS
685     
686     # LibraryThing
687     #SetEnv OILS_LIBRARYTHING_URL http://ltfl.librarything.com/forlibraries/widget.js?id=MYID
688     #SetEnv OILS_LIBRARYTHING_HTTPS_URL https://ltfl.librarything.com/forlibraries/widget.js?id=MYID
689     
690     # ChiliFresh
691     #SetEnv OILS_CHILIFRESH_ACCOUNT
692     #SetEnv OILS_CHILIFRESH_URL http://chilifresh.com/on-site/js/evergreen.js
693     #SetEnv OILS_CHILIFRESH_HTTPS_URL https://secure.chilifresh.com/on-site/js/evergreen.js
694
695     # Novelist
696     # SetEnv OILS_NOVELIST_URL http://imageserver.ebscohost.com/novelistselect/ns2init.js
697     # SetEnv OILS_NOVELIST_PROFILE <profile>
698     # SetEnv OILS_NOVELIST_PASSWORD <password>
699
700     #-------------------------------------------------
701
702     <IfModule mod_deflate.c>
703         SetOutputFilter DEFLATE
704         BrowserMatch ^Mozilla/4 gzip-only-text/html
705         BrowserMatch ^Mozilla/4\.0[678] no-gzip
706         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
707         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
708         <IfModule mod_headers.c>
709             Header append Cache-Control "public"
710             Header append Vary User-Agent env=!dont-vary
711         </IfModule>
712     </IfModule>
713 </Location>
714 <LocationMatch ^/(images|css|js)/>
715     # should pick up the default expire time from eg.conf...
716     <IfModule mod_deflate.c>
717         SetOutputFilter DEFLATE
718         BrowserMatch ^Mozilla/4 gzip-only-text/html
719         BrowserMatch ^Mozilla/4\.0[678] no-gzip
720         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
721         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
722         <IfModule mod_headers.c>
723             Header append Cache-Control "public"
724             Header append Vary User-Agent env=!dont-vary
725         </IfModule>
726     </IfModule>
727 </LocationMatch>
728 <Location /eg/opac>
729     PerlSetVar OILSWebContextLoader "OpenILS::WWW::EGCatLoader"
730     # Expire the HTML quickly since we're loading dynamic data for each page
731     ExpiresActive On
732     ExpiresByType text/html "access plus 5 seconds"
733 </Location>
734 <Location /eg/kpac>
735     PerlSetVar OILSWebContextLoader "OpenILS::WWW::EGKPacLoader"
736     PerlSetVar KPacConfigFile "@sysconfdir@/kpac.xml.example"
737     ExpiresActive On
738     ExpiresByType text/html "access plus 5 seconds"
739 </Location>
740
741 # Note: the template processor will decline handling anything it does not
742 # have an explicit configuration for, which means it will fall back to 
743 # Apache to serve the file.  However, in the interest of speed, go ahead 
744 # and tell Apache to avoid asking OpenILS::WWW::EGWeb for static content.
745 # Add more exemptions as needed.
746 <LocationMatch ^/eg/.*(\.js|\.html|\.xhtml|\.xml|\.jpg|\.png|\.gif)$>
747     SetHandler None
748 </LocationMatch>
749
750 # ----------------------------------------------------------------------------------
751 # Some mod_deflate setup
752 # ----------------------------------------------------------------------------------
753 <IfModule mod_deflate.c>
754
755     ## optional logging for mod_deflate debugging
756     ##DeflateFilterNote Input instream
757     ##DeflateFilterNote Output outstream
758     ##DeflateFilterNote Ratio ratio
759     ##
760     ##LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
761     ##CustomLog /var/log/apache2/deflate_log deflate
762
763     # There are problems with XMLENT and mod_deflate - so lets disable it
764     # This is where we don't have a pre-existing LocationMatch directive earlier
765     <LocationMatch /opac/.*\.xml$>
766         SetEnv no-gzip
767     </LocationMatch>
768     <LocationMatch /opac/[a-z]{2}-[A-Z]{2}/extras/slimpac/.*\.html$>
769         SetEnv no-gzip
770     </LocationMatch>
771     <LocationMatch /reports/.*\.xhtml$>
772         SetEnv no-gzip
773     </LocationMatch>
774     <LocationMatch /conify/.*\.html$>
775         SetEnv no-gzip
776     </LocationMatch>
777 </IfModule>
778
779
780 <Location /IDL2js>
781
782     SetHandler perl-script
783     PerlHandler OpenILS::WWW::IDL2js
784     Options +ExecCGI
785     PerlSendHeader On
786     Require all granted 
787
788     <IfModule mod_headers.c>
789         Header append Cache-Control "public"
790     </IFModule>
791
792     <IfModule mod_deflate.c>
793         SetOutputFilter DEFLATE
794         BrowserMatch ^Mozilla/4 gzip-only-text/html
795         BrowserMatch ^Mozilla/4\.0[678] no-gzip
796         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
797         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
798         <IfModule mod_headers.c>
799             Header append Vary User-Agent env=!dont-vary
800         </IfModule>
801     </IfModule>
802 </Location>
803
804 <LocationMatch /eg/staff/>
805     Options -MultiViews
806     PerlSetVar OILSWebStopAtIndex "true"
807
808     # sample staff-specific translation files
809     #PerlAddVar OILSWebLocale "en_ca"                                           
810     #PerlAddVar OILSWebLocale "/openils/var/data/locale/staff/en-CA.po"         
811     #PerlAddVar OILSWebLocale "fr_ca"                                           
812     #PerlAddVar OILSWebLocale "/openils/var/data/locale/staff/fr-CA.po"   
813 </LocationMatch>
814
815 <Location /js/>
816     <IfModule mod_headers.c>
817         Header append Cache-Control "public"
818     </IFModule>
819     <IfModule mod_deflate.c>
820         SetOutputFilter DEFLATE
821         BrowserMatch ^Mozilla/4 gzip-only-text/html
822         BrowserMatch ^Mozilla/4\.0[678] no-gzip
823         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
824         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
825         <IfModule mod_headers.c>
826             Header append Vary User-Agent env=!dont-vary
827         </IfModule>
828     </IfModule>
829 </Location>
830
831
832 # Uncomment the following to force SSL for everything. Note that this defeats caching
833 # and you will suffer a performance hit.
834 #RewriteCond %{HTTPS} off
835 #RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [NE,R,L]