]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/examples/apache/eg_vhost.conf.in
bf58315a122de50a37f6ff83b3a2452708c6ac79
[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 # capture locale CGI param for /reports/fm_IDL.xml
531 RewriteCond %{REQUEST_URI} ^/reports/fm_IDL.xml
532 RewriteCond %{QUERY_STRING} locale=([^&;]*)
533 RewriteRule . - [E=locale:%1]
534
535 <LocationMatch /reports/fm_IDL.xml>
536     IDLChunkStripPI "yes"
537     IDLChunkEscapeScript "no"
538     IDLChunkStripComments "yes"
539     IDLChunkStripDoctype "yes"
540     IDLChunkContentType "application/xml; charset=utf-8"
541     AddOutputFilter INCLUDES;IDLCHUNK .xml
542 </LocationMatch>
543
544 # ----------------------------------------------------------------------------------
545 # EDI Message viewer
546 # ----------------------------------------------------------------------------------
547 <Location /edi>
548     SetHandler perl-script
549     PerlHandler OpenILS::WWW::EDI
550     Options +ExecCGI
551     PerlSendHeader On
552     allow from all
553 </Location>     
554
555 # ----------------------------------------------------------------------------------
556 # XML-RPC gateway
557 # ----------------------------------------------------------------------------------
558 <Location /xml-rpc>
559     SetHandler perl-script
560     PerlHandler OpenILS::WWW::XMLRPCGateway
561     Options +ExecCGI
562     PerlSendHeader On
563     allow from all
564 </Location>
565
566 # ----------------------------------------------------------------------------------
567 # Conify - next-generation Evergreen administration interface
568 # ----------------------------------------------------------------------------------
569 RewriteRule ^/conify/([a-z]{2}-[A-Z]{2})/global/(.*)$ /conify/global/$2 [E=locale:$1,L]
570 <Location /conify>
571     Options +Includes
572     XMLEntStripPI "yes"
573     XMLEntEscapeScript "no"
574     XMLEntStripComments "no"
575     XMLEntContentType "text/html; charset=utf-8"
576     AddOutputFilter INCLUDES;XMLENT .html
577  
578     AuthType Basic
579     AuthName "Dojo Admin Login"
580     PerlOptions +GlobalRequest
581     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
582     PerlAuthenHandler OpenILS::WWW::Proxy::Authen
583     require valid-user
584     Options +ExecCGI
585     PerlSendHeader On
586     allow from all
587 </Location>
588
589 <Location /vandelay-upload>
590     SetHandler perl-script
591     PerlHandler OpenILS::WWW::Vandelay::spool_marc
592     Options +ExecCGI
593     allow from all
594 </Location>
595
596 # OpenURL 0.1 searching based on OpenSearch
597 RewriteMap openurl prg:@bindir@/openurl_map.pl
598 RewriteCond %{QUERY_STRING} (^.*$)
599 RewriteRule ^/openurl$ ${openurl:%1} [NE,PT]
600
601
602
603 # General Evergreen web template processor
604 <Location /eg>
605     SetHandler perl-script
606     PerlHandler OpenILS::WWW::EGWeb
607     Options +ExecCGI
608     PerlSendHeader On
609     allow from all
610
611     PerlSetVar OILSWebBasePath "/eg"
612     PerlSetVar OILSWebWebDir "@localstatedir@/web"
613     PerlSetVar OILSWebDefaultTemplateExtension "tt2"
614
615     # Enable Template-Toolkit error debugging messages (apache error log)
616     PerlSetVar OILSWebDebugTemplate "true"
617
618     # -------------------------------------------------------
619     # Media Prefix.  In the 3rd example, the protocol (http) is enforced
620     #PerlSetVar OILSWebMediaPrefix "/media"
621     #PerlSetVar OILSWebMediaPrefix "static.example.com/media"
622     #PerlSetVar OILSWebMediaPrefix "http://static.example.com/media"
623
624     # Locale messages files:
625     #
626     # These appear in pairs; the first represents the user agent
627     # Accept-Language header locale, and the second represents
628     # the fully-qualified path for the corresponding PO file that
629     # contains the messages.
630     #
631     # If you enable two or more locales, then users will be able to
632     # select their preferred locale from a locale picker in the TPAC.
633     #
634     #PerlAddVar OILSWebLocale "en"
635     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/messages.en.po"
636     #PerlAddVar OILSWebLocale "en_ca"
637     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/en-CA.po"
638     #PerlAddVar OILSWebLocale "fr_ca"
639     #PerlAddVar OILSWebLocale "@localstatedir@/data/locale/fr-CA.po"
640
641     # Set the default locale: defaults to en-US
642     #PerlAddVar OILSWebDefaultLocale "fr_ca"
643     
644     # Templates will be loaded from the following paths in reverse order.
645     PerlAddVar OILSWebTemplatePath "@localstatedir@/templates"
646     #PerlAddVar OILSWebTemplatePath "@localstatedir@/templates_localskin"
647
648     #-------------------------------------------------
649     # Added Content Configuration
650     #-------------------------------------------------
651     # Content Cafe
652     #SetEnv OILS_CONTENT_CAFE_USER MYUSER
653     #SetEnv OILS_CONTENT_CAFE_PASS MYPASS
654     
655     # LibraryThing
656     #SetEnv OILS_LIBRARYTHING_URL http://ltfl.librarything.com/forlibraries/widget.js?id=MYID
657     #SetEnv OILS_LIBRARYTHING_HTTPS_URL https://ltfl.librarything.com/forlibraries/widget.js?id=MYID
658     
659     # ChiliFresh
660     #SetEnv OILS_CHILIFRESH_ACCOUNT
661     #SetEnv OILS_CHILIFRESH_URL http://chilifresh.com/on-site/js/evergreen.js
662     #SetEnv OILS_CHILIFRESH_HTTPS_URL https://secure.chilifresh.com/on-site/js/evergreen.js
663     #-------------------------------------------------
664
665     <IfModule mod_deflate.c>
666         SetOutputFilter DEFLATE
667         BrowserMatch ^Mozilla/4 gzip-only-text/html
668         BrowserMatch ^Mozilla/4\.0[678] no-gzip
669         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
670         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
671         <IfModule mod_headers.c>
672             Header append Cache-Control "public"
673             Header append Vary User-Agent env=!dont-vary
674         </IfModule>
675     </IfModule>
676 </Location>
677 <LocationMatch ^/(images|css|js)/>
678     # should pick up the default expire time from eg.conf...
679     <IfModule mod_deflate.c>
680         SetOutputFilter DEFLATE
681         BrowserMatch ^Mozilla/4 gzip-only-text/html
682         BrowserMatch ^Mozilla/4\.0[678] no-gzip
683         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
684         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
685         <IfModule mod_headers.c>
686             Header append Cache-Control "public"
687             Header append Vary User-Agent env=!dont-vary
688         </IfModule>
689     </IfModule>
690 </LocationMatch>
691 <Location /eg/opac>
692     PerlSetVar OILSWebContextLoader "OpenILS::WWW::EGCatLoader"
693     # Expire the HTML quickly since we're loading dynamic data for each page
694     ExpiresActive On
695     ExpiresByType text/html "access plus 5 seconds"
696 </Location>
697 <Location /eg/kpac>
698     PerlSetVar OILSWebContextLoader "OpenILS::WWW::EGKPacLoader"
699     PerlSetVar KPacConfigFile "@sysconfdir@/kpac.xml.example"
700     ExpiresActive On
701     ExpiresByType text/html "access plus 5 seconds"
702 </Location>
703
704 # Note: the template processor will decline handling anything it does not
705 # have an explicit configuration for, which means it will fall back to 
706 # Apache to serve the file.  However, in the interest of speed, go ahead 
707 # and tell Apache to avoid asking OpenILS::WWW::EGWeb for static content.
708 # Add more exemptions as needed.
709 <LocationMatch ^/eg/.*(\.js|\.html|\.xhtml|\.xml|\.jpg|\.png|\.gif)$>
710     SetHandler None
711 </LocationMatch>
712
713 # ----------------------------------------------------------------------------------
714 # Some mod_deflate logging setup
715 # ----------------------------------------------------------------------------------
716 <IfModule mod_deflate.c>
717     DeflateFilterNote Input instream
718     DeflateFilterNote Output outstream
719     DeflateFilterNote Ratio ratio
720
721     LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
722     CustomLog /var/log/apache2/deflate_log deflate
723
724     # There are problems with XMLENT and mod_deflate - so lets disable it
725     # This is where we don't have a pre-existing LocationMatch directive earlier
726     <LocationMatch /opac/.*\.xml$>
727         SetEnv no-gzip
728     </LocationMatch>
729     <LocationMatch /opac/[a-z]{2}-[A-Z]{2}/extras/slimpac/.*\.html$>
730         SetEnv no-gzip
731     </LocationMatch>
732     <LocationMatch /reports/.*\.xhtml$>
733         SetEnv no-gzip
734     </LocationMatch>
735     <LocationMatch /conify/.*\.html$>
736         SetEnv no-gzip
737     </LocationMatch>
738 </IfModule>
739
740
741 <Location /IDL2js>
742
743     SetHandler perl-script
744     PerlHandler OpenILS::WWW::IDL2js
745     Options +ExecCGI
746     PerlSendHeader On
747     allow from all
748
749     <IfModule mod_headers.c>
750         Header append Cache-Control "public"
751     </IFModule>
752
753     <IfModule mod_deflate.c>
754         SetOutputFilter DEFLATE
755         BrowserMatch ^Mozilla/4 gzip-only-text/html
756         BrowserMatch ^Mozilla/4\.0[678] no-gzip
757         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
758         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
759         <IfModule mod_headers.c>
760             Header append Vary User-Agent env=!dont-vary
761         </IfModule>
762     </IfModule>
763 </Location>
764
765 # Uncomment the following to force SSL for everything. Note that this defeats caching
766 # and you will suffer a performance hit.
767 #RewriteCond %{HTTPS} off
768 #RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [NE,R,L]