]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/examples/apache/eg_vhost.conf.in
Default and force patrons to TPac
[working/Evergreen.git] / Open-ILS / examples / apache / 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
37 # ----------------------------------------------------------------------------------
38 OSRFGatewayConfig @sysconfdir@/opensrf_core.xml
39 # Translator memcache server.  Default is localhost
40 # OSRFTranslatorCacheServer 127.0.0.1:11211
41
42
43 # ----------------------------------------------------------------------------------
44 # Added content plugin
45 # ----------------------------------------------------------------------------------
46 <Location /opac/extras/ac/>
47     SetHandler perl-script
48     PerlHandler OpenILS::WWW::AddedContent
49     Options +ExecCGI
50     PerlSendHeader On
51     allow from all
52 </Location>
53
54 # Autosuggest for searches
55 <Location /opac/extras/autosuggest>
56     SetHandler perl-script
57     PerlHandler OpenILS::WWW::AutoSuggest
58     PerlSendHeader On
59     Allow from All
60 </Location>
61
62 # Flattener service
63 <Location /opac/extras/flattener>
64     SetHandler perl-script
65     PerlHandler OpenILS::WWW::FlatFielder
66     PerlSendHeader On
67     Allow from All
68 </Location>
69
70 # ----------------------------------------------------------------------------------
71 # Replace broken cover images with a transparent GIF by default
72 # ----------------------------------------------------------------------------------
73 RewriteEngine ON
74 RewriteRule ^/opac/extras/ac/jacket/(small|medium|large)/$ \
75     /opac/images/blank.png [P,L]
76
77 # ----------------------------------------------------------------------------------
78 # Add the row ID (RID) and date so we can make unAPI happy
79 # ----------------------------------------------------------------------------------
80 RewriteCond %{QUERY_STRING} (^r|&r)=(\d+)
81 RewriteRule . - [E=OILS_OPAC_RID:%2,E=OILS_TIME_YEAR:%{TIME_YEAR}]
82
83 # ----------------------------------------------------------------------------------
84 # Pull the locale from the URL
85 # ----------------------------------------------------------------------------------
86 RewriteCond %{REQUEST_URI} ^/opac/(.*?)/
87 RewriteRule . - [E=locale:%1]
88
89 # ----------------------------------------------------------------------------------
90 # Rewrite JSPac->TPac with redirects
91 # ----------------------------------------------------------------------------------
92
93 # First things first, extract useful data
94 # And we are going to start with a "this is the JSPac" check on each of these:
95 # RewriteCond %{REQUEST_URI} ^/?opac/
96
97 # Basic (overall) search type, if present
98 # I am cheating and grabbing RT or TP because I dunno the difference between them.
99 RewriteCond %{REQUEST_URI} ^/opac/
100 RewriteCond %{QUERY_STRING} (^|[^0-9a-zA-Z])(rt|tp)=([^;&]*)
101 RewriteRule . - [E=OILS_JSPAC_SEARCH_TYPE:qtype=%3;]
102
103 # Basic (overall) search term(s), if present - NOTE: Not doing advanced search.
104 RewriteCond %{REQUEST_URI} ^/opac/
105 RewriteCond %{QUERY_STRING} (^|[^0-9a-zA-Z])t=([^;&]*)
106 RewriteRule . - [E=OILS_JSPAC_SEARCH_TERMS:query=%2;]
107
108 # Search Location, if present
109 RewriteCond %{REQUEST_URI} ^/opac/
110 RewriteCond %{QUERY_STRING} (^|[^0-9a-zA-Z])l=([^;&]*)
111 RewriteRule . - [E=OILS_JSPAC_SEARCH_LOCATION:locg=%2;]
112
113 # My Account
114 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]
115
116 # Record Pages
117 # /opac/en-US/skin/default/xml/rdetail.xml?r=32 -> /eg/opac/record/32
118 RewriteCond %{QUERY_STRING} (^|[^0-9a-zA-Z])r=([^;&]*)
119 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]
120
121 # Bookbag Pages
122 # /opac/extras/feed/bookbag/html-full/1 -> /eg/opac/results?bookbag=1;page=0;locg=1;depth=0
123 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]
124
125 # Search Results Pages
126 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]
127
128 # Basic Search (STILL not doing advanced)
129 # Fallback! But only for things that end in xml, htm, or html
130 # Images, CSS, etc can stick around.
131 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]
132
133 # ----------------------------------------------------------------------------------
134 # For sanity reasons, default indexes to Off
135 # ----------------------------------------------------------------------------------
136 Options -Indexes
137
138 # ----------------------------------------------------------------------------------
139 # Configure the OPAC
140 # ----------------------------------------------------------------------------------
141 <LocationMatch /opac/>
142     AddType application/xhtml+xml .xml
143    
144     # - configure mod_xmlent
145     XMLEntStripPI "yes"
146     XMLEntEscapeScript "no"
147     XMLEntStripComments "yes"
148     XMLEntContentType "text/html; charset=utf-8"
149     # forces quirks mode which we want for now
150     XMLEntStripDoctype "yes" 
151
152     # - set up the include handlers
153     Options +Includes
154     AddOutputFilter INCLUDES .xsl
155     AddOutputFilter INCLUDES;XMLENT .xml
156                     
157     SetEnvIf Request_URI ".*" OILS_OPAC_BASE=/opac/
158     
159     # This gives you the option to configure a different host to serve OPAC images from
160     # Specify the hostname (without protocol) and path to the images.  Protocol will
161     # be determined at runtime
162     #SetEnvIf Request_URI ".*" OILS_OPAC_IMAGES_HOST=static.example.org/opac/
163
164     # In addition to loading images from a static host, you can also load CSS and/or
165     # Javascript from a static host or hosts. Protocol will be determined at runtime
166     # and/or by configuration options immediately following.
167     #SetEnvIf Request_URI ".*" OILS_OPAC_CSS_HOST=static.example.org/opac/
168     #SetEnvIf Request_URI ".*" OILS_OPAC_JS_HOST=static.example.org/opac/
169
170     # If you are not able to serve static content via https and 
171     # wish to force http:// (and are comfortable with mixed-content
172     # warnings in client browsers), set this:
173     #SetEnvIf Request_URI ".*" OILS_OPAC_STATIC_PROTOCOL=http
174
175     # If you would prefer to fall back to your non-static servers for 
176     # https pages, avoiding mixed-content warnings in client browsers
177     # and are willing to accept some increased server load, set this:
178     #SetEnvIf Request_URI ".*" OILS_OPAC_BYPASS_STATIC_FOR_HTTPS=yes
179
180     # Specify a ChiliFresh account to integrate their services with the OPAC
181     #SetEnv OILS_CHILIFRESH_ACCOUNT
182     #SetEnv OILS_CHILIFRESH_PROFILE
183     #SetEnv OILS_CHILIFRESH_URL http://chilifresh.com/on-site/js/evergreen.js
184     #SetEnv OILS_CHILIFRESH_HTTPS_URL https://secure.chilifresh.com/on-site/js/evergreen.js
185
186     # Specify the initial script URL for Novelist (containing account credentials, etc.)
187     #SetEnv OILS_NOVELIST_URL
188     #
189
190     # Uncomment to force SSL any time a patron is logged in.  This protects 
191     # authentication tokens.  Left commented out for backwards compat for now.
192     #SetEnv OILS_OPAC_FORCE_LOGIN_SSL 1
193
194     # If set, the skin uses the combined JS file at $SKINDIR/js/combined.js
195     #SetEnv OILS_OPAC_COMBINED_JS 1
196
197 </LocationMatch>
198
199 <Location /opac/>
200     # ----------------------------------------------------------------------------------
201     # Some mod_deflate fun
202     # ----------------------------------------------------------------------------------
203     <IfModule mod_deflate.c>
204         SetOutputFilter DEFLATE
205
206         BrowserMatch ^Mozilla/4 gzip-only-text/html
207         BrowserMatch ^Mozilla/4\.0[678] no-gzip
208         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
209
210         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
211
212         <IfModule mod_headers.c>
213             Header append Vary User-Agent env=!dont-vary
214         </IfModule>
215     </IfModule>
216
217 </Location>
218
219 <Location //opac/>
220     # ----------------------------------------------------------------------------------
221     # Some mod_deflate fun
222     # ----------------------------------------------------------------------------------
223     <IfModule mod_deflate.c>
224         SetOutputFilter DEFLATE
225
226         BrowserMatch ^Mozilla/4 gzip-only-text/html
227         BrowserMatch ^Mozilla/4\.0[678] no-gzip
228         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
229
230         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
231
232         <IfModule mod_headers.c>
233             Header append Vary User-Agent env=!dont-vary
234         </IfModule>
235     </IfModule>
236
237 </Location>
238
239 # ----------------------------------------------------------------------------------
240 # Force SSL on the OPAC's "My Account" page
241 # ----------------------------------------------------------------------------------
242 <LocationMatch .*/myopac.xml>
243     SSLRequireSSL
244 </LocationMatch>
245
246 <LocationMatch /opac/extras/>
247     # Force to en-US for now to satisfy bbags.xml
248     SetEnv locale en-US
249     Options +Includes
250     AddOutputFilter INCLUDES .xml
251     AddType application/xhtml+xml .xml
252 </LocationMatch>
253
254 RewriteCond %{QUERY_STRING} locale=([^&]*)
255 RewriteRule ^/opac/[a-z]{2}-[A-Z]{2}/extras/slimpac/(.*)$ /opac/%1/extras/slimpac/$1? [redirect]
256 <LocationMatch /opac/[a-z]{2}-[A-Z]{2}/extras/slimpac/>
257     AddOutputFilter INCLUDES;XMLENT .html
258 </LocationMatch>
259
260 # ----------------------------------------------------------------------------------
261 # Run server-side XUL and XHTML through xmlent to load the correct XML entities
262 # ----------------------------------------------------------------------------------
263 RewriteCond %{HTTP:Accept-Language} ^([a-z]{2}-[A-Z]{2})$
264 # Default to en-US if we haven't matched a locale of the form xx-YY 
265 RewriteRule .? - [S=4]
266 RewriteRule ^/xul/      -       [E=locale:en-US]
267 RewriteRule ^/reports/  -       [E=locale:en-US]
268 RewriteRule .? - [E=locale:en-US]
269 RewriteRule .? - [S=3]
270 # Otherwise, set our real locale
271 RewriteRule ^/xul/      -       [E=locale:%{HTTP:Accept-Language}]
272 RewriteRule ^/reports/  -       [E=locale:%{HTTP:Accept-Language}]
273 RewriteRule .? - [E=locale:%{HTTP:Accept-Language}]
274
275 <LocationMatch /xul/.*\.x?html$>
276     Options +Includes
277     XMLEntEscapeScript "no"
278     XMLEntStripComments "yes"
279     XMLEntStripPI "yes"
280     XMLEntStripDoctype "yes"
281     XMLEntContentType "text/html; charset=utf-8"
282     AddOutputFilter INCLUDES;XMLENT .xhtml
283     AddOutputFilter INCLUDES;XMLENT .html
284     SetEnv no-gzip
285     allow from all
286 </LocationMatch>
287
288
289 <LocationMatch /xul/.*\.xul$>
290     Options +Includes
291     XMLEntContentType "application/vnd.mozilla.xul+xml"
292     AddOutputFilter INCLUDES;XMLENT .xul
293     SetEnv no-gzip
294     allow from all
295 </LocationMatch>
296
297 # ----------------------------------------------------------------------------------
298 # Self-serve password interface
299 # ----------------------------------------------------------------------------------
300 <Location /opac/password>
301     SetHandler perl-script
302     PerlHandler OpenILS::WWW::PasswordReset::password_reset
303     Options +ExecCGI
304     PerlSendHeader On
305     allow from all
306
307     # Force clients to use HTTPS
308     RewriteCond %{HTTPS} !=on [NC]
309     RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
310 </Location>
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     allow from all
321 </Location>
322 <Location /opac/extras/supercat>
323     SetHandler perl-script
324     PerlHandler OpenILS::WWW::SuperCat::supercat
325     Options +ExecCGI
326     PerlSendHeader On
327     allow from all
328 </Location>
329 <Location /opac/extras/unapi>
330     SetHandler perl-script
331     PerlHandler OpenILS::WWW::SuperCat::unapi
332     Options +ExecCGI
333     PerlSendHeader On
334     allow from all
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     allow from all
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     allow from all
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     allow from all
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     allow from all
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     allow from all
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     allow from all
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     allow from all
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     allow from all
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     allow from all
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     allow from all
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     allow from all
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     allow from all
449 </Location>
450
451 <Location /opac/extras/merge_template>
452     SetHandler perl-script
453     AuthType Basic
454     AuthName "Batch Update Login"
455     PerlOptions +GlobalRequest
456     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
457     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
458     require valid-user
459     PerlHandler OpenILS::WWW::TemplateBatchBibUpdate
460     PerlSendHeader On
461     Options +ExecCGI
462     allow from all
463 </Location>
464
465 <Location /opac/extras/circ>
466     AuthType Basic
467     AuthName "Circ Extras Login"
468     PerlOptions +GlobalRequest
469     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
470     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
471     require valid-user
472     Options +ExecCGI
473     PerlSendHeader On
474     allow from all
475 </Location>
476
477 <Location /collections>
478     SetHandler perl-script
479     AuthType Basic
480     AuthName "Collections Login"
481     PerlOptions +GlobalRequest
482     PerlSetVar OILSProxyPermissions "money.collections_tracker.create"
483     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
484     require valid-user
485     Options +ExecCGI
486     PerlSendHeader On
487     allow from all
488 </Location>
489
490
491 # ----------------------------------------------------------------------------------
492 # Reporting output lives here
493 # ----------------------------------------------------------------------------------
494 <Location /reporter/>
495     AuthType Basic
496     AuthName "Report Login"
497     PerlOptions +GlobalRequest
498     PerlSetVar OILSProxyPermissions "VIEW_REPORT_OUTPUT"
499     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
500     require valid-user
501     Options +ExecCGI
502     PerlSendHeader On
503     allow from all
504 </Location>
505
506 # ----------------------------------------------------------------------------------
507 # Selfcheck interface
508 # ----------------------------------------------------------------------------------
509 <LocationMatch .*/selfcheck.xml>
510     AuthType Basic
511     AuthName "Self-check Login"
512     PerlOptions +GlobalRequest
513     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
514     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
515     require valid-user
516     Options +ExecCGI
517     PerlSendHeader On
518     allow from all
519 </LocationMatch>
520
521
522 # ----------------------------------------------------------------------------------
523 # Reports GUI
524 # ----------------------------------------------------------------------------------
525 <LocationMatch /reports>
526     Options +Includes
527     AddOutputFilter INCLUDES;XMLENT .xhtml
528 </LocationMatch>
529
530 <LocationMatch /reports/fm_IDL.xml>
531     IDLChunkStripPI "yes"
532     IDLChunkEscapeScript "no"
533     IDLChunkStripComments "yes"
534     IDLChunkStripDoctype "yes"
535     IDLChunkContentType "application/xml; charset=utf-8"
536     AddOutputFilter INCLUDES;IDLCHUNK .xml
537 </LocationMatch>
538
539 # ----------------------------------------------------------------------------------
540 # EDI Message viewer
541 # ----------------------------------------------------------------------------------
542 <Location /edi>
543     SetHandler perl-script
544     PerlHandler OpenILS::WWW::EDI
545     Options +ExecCGI
546     PerlSendHeader On
547     allow from all
548 </Location>     
549
550 # ----------------------------------------------------------------------------------
551 # XML-RPC gateway
552 # ----------------------------------------------------------------------------------
553 <Location /xml-rpc>
554     SetHandler perl-script
555     PerlHandler OpenILS::WWW::XMLRPCGateway
556     Options +ExecCGI
557     PerlSendHeader On
558     allow from all
559 </Location>
560
561 # ----------------------------------------------------------------------------------
562 # Conify - next-generation Evergreen administration interface
563 # ----------------------------------------------------------------------------------
564 RewriteRule ^/conify/([a-z]{2}-[A-Z]{2})/global/(.*)$ /conify/global/$2 [E=locale:$1,L]
565 <Location /conify>
566     Options +Includes
567     XMLEntStripPI "yes"
568     XMLEntEscapeScript "no"
569     XMLEntStripComments "no"
570     XMLEntContentType "text/html; charset=utf-8"
571     AddOutputFilter INCLUDES;XMLENT .html
572  
573     AuthType Basic
574     AuthName "Dojo Admin Login"
575     PerlOptions +GlobalRequest
576     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
577     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
578     require valid-user
579     Options +ExecCGI
580     PerlSendHeader On
581     allow from all
582 </Location>
583
584 <Location /vandelay-upload>
585     SetHandler perl-script
586     PerlHandler OpenILS::WWW::Vandelay::spool_marc
587     Options +ExecCGI
588     allow from all
589 </Location>
590
591 # OpenURL 0.1 searching based on OpenSearch
592 RewriteMap openurl prg:@bindir@/openurl_map.pl
593 RewriteCond %{QUERY_STRING} (^.*$)
594 RewriteRule ^/openurl$ ${openurl:%1} [NE,PT]
595
596
597
598 # General Evergreen web template processor
599 <Location /eg>
600     SetHandler perl-script
601     PerlHandler OpenILS::WWW::EGWeb
602     Options +ExecCGI
603     PerlSendHeader On
604     allow from all
605
606     PerlSetVar OILSWebBasePath "/eg"
607     PerlSetVar OILSWebWebDir "@localstatedir@/web"
608     PerlSetVar OILSWebDefaultTemplateExtension "tt2"
609
610     # Enable Template-Toolkit error debugging messages (apache error log)
611     PerlSetVar OILSWebDebugTemplate "true"
612
613     # -------------------------------------------------------
614     # Media Prefix.  In the 3rd example, the protocol (http) is enforced
615     #PerlSetVar OILSWebMediaPrefix "/media"
616     #PerlSetVar OILSWebMediaPrefix "static.example.com/media"
617     #PerlSetVar OILSWebMediaPrefix "http://static.example.com/media"
618
619     # Locale messages files:
620     #
621     # These appear in pairs; the first represents the user agent
622     # Accept-Language header locale, and the second represents
623     # the fully-qualified path for the corresponding PO file that
624     # contains the messages.
625     #
626     # If you enable two or more locales, then users will be able to
627     # select their preferred locale from a locale picker in the TPAC.
628     #
629     #PerlAddVar OILSWebLocale "en"
630     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/messages.en.po"
631     #PerlAddVar OILSWebLocale "en_ca"
632     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/en-CA.po"
633     #PerlAddVar OILSWebLocale "fr_ca"
634     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/fr-CA.po"
635
636     # Set the default locale: defaults to en-US
637     #PerlAddVar OILSWebDefaultLocale "fr_ca"
638     
639     # Templates will be loaded from the following paths in reverse order.
640     PerlAddVar OILSWebTemplatePath "@localstatedir@/templates"
641     #PerlAddVar OILSWebTemplatePath "@localstatedir@/templates_localskin"
642
643     #-------------------------------------------------
644     # Added Content Configuration
645     #-------------------------------------------------
646     # Content Cafe
647     #SetEnv OILS_CONTENT_CAFE_USER MYUSER
648     #SetEnv OILS_CONTENT_CAFE_PASS MYPASS
649     
650     # LibraryThing
651     #SetEnv OILS_LIBRARYTHING_URL http://ltfl.librarything.com/forlibraries/widget.js?id=MYID
652     #SetEnv OILS_LIBRARYTHING_HTTPS_URL https://ltfl.librarything.com/forlibraries/widget.js?id=MYID
653     
654     # ChiliFresh
655     #SetEnv OILS_CHILIFRESH_ACCOUNT
656     #SetEnv OILS_CHILIFRESH_URL http://chilifresh.com/on-site/js/evergreen.js
657     #SetEnv OILS_CHILIFRESH_HTTPS_URL https://secure.chilifresh.com/on-site/js/evergreen.js
658     #-------------------------------------------------
659
660     <IfModule mod_deflate.c>
661         SetOutputFilter DEFLATE
662         BrowserMatch ^Mozilla/4 gzip-only-text/html
663         BrowserMatch ^Mozilla/4\.0[678] no-gzip
664         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
665         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
666         <IfModule mod_headers.c>
667             Header append Cache-Control "public"
668             Header append Vary User-Agent env=!dont-vary
669         </IfModule>
670     </IfModule>
671 </Location>
672 <LocationMatch ^/(images|css|js)/>
673     # should pick up the default expire time from eg.conf...
674     <IfModule mod_deflate.c>
675         SetOutputFilter DEFLATE
676         BrowserMatch ^Mozilla/4 gzip-only-text/html
677         BrowserMatch ^Mozilla/4\.0[678] no-gzip
678         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
679         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
680         <IfModule mod_headers.c>
681             Header append Cache-Control "public"
682             Header append Vary User-Agent env=!dont-vary
683         </IfModule>
684     </IfModule>
685 </LocationMatch>
686 <Location /eg/opac>
687     PerlSetVar OILSWebContextLoader "OpenILS::WWW::EGCatLoader"
688     # Expire the HTML quickly since we're loading dynamic data for each page
689     ExpiresActive On
690     ExpiresByType text/html "access plus 5 seconds"
691 </Location>
692 <Location /eg/kpac>
693     PerlSetVar OILSWebContextLoader "OpenILS::WWW::EGKPacLoader"
694     PerlSetVar KPacConfigFile "@sysconfdir@/kpac.xml.example"
695     ExpiresActive On
696     ExpiresByType text/html "access plus 5 seconds"
697 </Location>
698
699 # Note: the template processor will decline handling anything it does not
700 # have an explicit configuration for, which means it will fall back to 
701 # Apache to serve the file.  However, in the interest of speed, go ahead 
702 # and tell Apache to avoid asking OpenILS::WWW::EGWeb for static content.
703 # Add more exemptions as needed.
704 <LocationMatch ^/eg/.*(\.js|\.html|\.xhtml|\.xml|\.jpg|\.png|\.gif)$>
705     SetHandler None
706 </LocationMatch>
707
708 # ----------------------------------------------------------------------------------
709 # Some mod_deflate logging setup
710 # ----------------------------------------------------------------------------------
711 <IfModule mod_deflate.c>
712     DeflateFilterNote Input instream
713     DeflateFilterNote Output outstream
714     DeflateFilterNote Ratio ratio
715
716     LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
717     CustomLog /var/log/apache2/deflate_log deflate
718
719     # There are problems with XMLENT and mod_deflate - so lets disable it
720     # This is where we don't have a pre-existing LocationMatch directive earlier
721     <LocationMatch /opac/.*\.xml$>
722         SetEnv no-gzip
723     </LocationMatch>
724     <LocationMatch /opac/[a-z]{2}-[A-Z]{2}/extras/slimpac/.*\.html$>
725         SetEnv no-gzip
726     </LocationMatch>
727     <LocationMatch /reports/.*\.xhtml$>
728         SetEnv no-gzip
729     </LocationMatch>
730     <LocationMatch /conify/.*\.html$>
731         SetEnv no-gzip
732     </LocationMatch>
733 </IfModule>
734
735
736 <Location /IDL2js>
737
738     SetHandler perl-script
739     PerlHandler OpenILS::WWW::IDL2js
740     Options +ExecCGI
741     PerlSendHeader On
742     allow from all
743
744     <IfModule mod_headers.c>
745         Header append Cache-Control "public"
746     </IFModule>
747
748     <IfModule mod_deflate.c>
749         SetOutputFilter DEFLATE
750         BrowserMatch ^Mozilla/4 gzip-only-text/html
751         BrowserMatch ^Mozilla/4\.0[678] no-gzip
752         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
753         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
754         <IfModule mod_headers.c>
755             Header append Vary User-Agent env=!dont-vary
756         </IfModule>
757     </IfModule>
758 </Location>
759
760 # Uncomment the following to force SSL for everything. Note that this defeats caching
761 # and you will suffer a performance hit.
762 #RewriteCond %{HTTPS} off
763 #RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [NE,R,L]