]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/examples/apache/eg_vhost.conf
while we're at it, condense the js/css/images deflat and cache control into 1 block
[working/Evergreen.git] / Open-ILS / examples / apache / eg_vhost.conf
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 ^/$ /opac/en-US/skin/default/xml/index.xml
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 #    allow from all
24 #</LocationMatch>
25
26
27 # ----------------------------------------------------------------------------------
28 # Assign a default locale to the accessible OPAC
29 # ----------------------------------------------------------------------------------
30 RedirectMatch 301 ^/opac/extras/slimpac/start.html$    /opac/en-US/extras/slimpac/start.html
31 RedirectMatch 301 ^/opac/extras/slimpac/advanced.html$ /opac/en-US/extras/slimpac/advanced.html
32
33 # ----------------------------------------------------------------------------------
34 # Configure the gateway
35 # ----------------------------------------------------------------------------------
36 OSRFGatewayConfig /openils/conf/opensrf_core.xml
37 # Translator memcache server.  Default is localhost
38 # OSRFTranslatorCacheServer 127.0.0.1:11211
39
40
41 # ----------------------------------------------------------------------------------
42 # Added content plugin
43 # ----------------------------------------------------------------------------------
44 <Location /opac/extras/ac/>
45     SetHandler perl-script
46     PerlHandler OpenILS::WWW::AddedContent
47     Options +ExecCGI
48     PerlSendHeader On
49     allow from all
50 </Location>
51
52 # ----------------------------------------------------------------------------------
53 # Replace broken cover images with a transparent GIF by default
54 # ----------------------------------------------------------------------------------
55 RewriteEngine ON
56 RewriteRule ^/opac/extras/ac/jacket/(small|medium|large)/$ \
57     /opac/images/blank.png [P,L]
58
59 # ----------------------------------------------------------------------------------
60 # Add the row ID (RID) and date so we can make unAPI happy
61 # ----------------------------------------------------------------------------------
62 RewriteCond %{QUERY_STRING} (^r|&r)=(\d+)
63 RewriteRule . - [E=OILS_OPAC_RID:%2,E=OILS_TIME_YEAR:%{TIME_YEAR}]
64
65 # ----------------------------------------------------------------------------------
66 # Pull the locale from the URL
67 # ----------------------------------------------------------------------------------
68 RewriteCond %{REQUEST_URI} ^/opac/(.*?)/
69 RewriteRule . - [E=locale:%1]
70
71 # ----------------------------------------------------------------------------------
72 # Configure the OPAC
73 # ----------------------------------------------------------------------------------
74 <LocationMatch /opac/>
75     AddType application/xhtml+xml .xml
76    
77     # - configure mod_xmlent
78     XMLEntStripPI "yes"
79     XMLEntEscapeScript "no"
80     XMLEntStripComments "yes"
81     XMLEntContentType "text/html; charset=utf-8"
82     # forces quirks mode which we want for now
83     XMLEntStripDoctype "yes" 
84
85     # - set up the include handlers
86     Options +Includes
87     AddOutputFilter INCLUDES .xsl
88     AddOutputFilter INCLUDES;XMLENT .xml
89                     
90     SetEnvIf Request_URI ".*" OILS_OPAC_BASE=/opac/
91     
92     # This gives you the option to configure a different host to serve OPAC images from
93     # Specify the hostname (without protocol) and path to the images.  Protocol will
94     # be determined at runtime
95     #SetEnvIf Request_URI ".*" OILS_OPAC_IMAGES_HOST=static.example.org/opac/
96
97     # In addition to loading images from a static host, you can also load CSS and/or
98     # Javascript from a static host or hosts. Protocol will be determined at runtime
99     # and/or by configuration options immediately following.
100     #SetEnvIf Request_URI ".*" OILS_OPAC_CSS_HOST=static.example.org/opac/
101     #SetEnvIf Request_URI ".*" OILS_OPAC_JS_HOST=static.example.org/opac/
102
103     # If you are not able to serve static content via https and 
104     # wish to force http:// (and are comfortable with mixed-content
105     # warnings in client browsers), set this:
106     #SetEnvIf Request_URI ".*" OILS_OPAC_STATIC_PROTOCOL=http
107
108     # If you would prefer to fall back to your non-static servers for 
109     # https pages, avoiding mixed-content warnings in client browsers
110     # and are willing to accept some increased server load, set this:
111     #SetEnvIf Request_URI ".*" OILS_OPAC_BYPASS_STATIC_FOR_HTTPS=yes
112
113     # Specify a ChiliFresh account to integrate their services with the OPAC
114     #SetEnv OILS_CHILIFRESH_ACCOUNT
115     #SetEnv OILS_CHILIFRESH_PROFILE
116     #SetEnv OILS_CHILIFRESH_URL http://chilifresh.com/on-site/js/evergreen.js
117
118     # Specify the initial script URL for Novelist (containing account credentials, etc.)
119     #SetEnv OILS_NOVELIST_URL
120     
121
122     # Uncomment to force SSL any time a patron is logged in.  This protects 
123     # authentication tokens.  Left commented out for backwards compat for now.
124     #SetEnv OILS_OPAC_FORCE_LOGIN_SSL 1
125
126
127     # If set, the skin uses the combined JS file at $SKINDIR/js/combined.js
128     #SetEnv OILS_OPAC_COMBINED_JS 1
129
130 </LocationMatch>
131
132 <Location /opac/>
133     # ----------------------------------------------------------------------------------
134     # Some mod_deflate fun
135     # ----------------------------------------------------------------------------------
136     <IfModule mod_deflate.c>
137         SetOutputFilter DEFLATE
138
139         BrowserMatch ^Mozilla/4 gzip-only-text/html
140         BrowserMatch ^Mozilla/4\.0[678] no-gzip
141         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
142
143         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
144
145         <IfModule mod_headers.c>
146             Header append Vary User-Agent env=!dont-vary
147         </IfModule>
148     </IfModule>
149
150 </Location>
151
152 <Location //opac/>
153     # ----------------------------------------------------------------------------------
154     # Some mod_deflate fun
155     # ----------------------------------------------------------------------------------
156     <IfModule mod_deflate.c>
157         SetOutputFilter DEFLATE
158
159         BrowserMatch ^Mozilla/4 gzip-only-text/html
160         BrowserMatch ^Mozilla/4\.0[678] no-gzip
161         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
162
163         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
164
165         <IfModule mod_headers.c>
166             Header append Vary User-Agent env=!dont-vary
167         </IfModule>
168     </IfModule>
169
170 </Location>
171
172 # ----------------------------------------------------------------------------------
173 # Force SSL on the OPAC's "My Account" page
174 # ----------------------------------------------------------------------------------
175 <LocationMatch .*/myopac.xml>
176     SSLRequireSSL
177 </LocationMatch>
178
179 <LocationMatch /opac/extras/>
180     # Force to en-US for now to satisfy bbags.xml
181     SetEnv locale en-US
182     Options +Includes
183     AddOutputFilter INCLUDES .xml
184     AddType application/xhtml+xml .xml
185 </LocationMatch>
186
187 RewriteCond %{QUERY_STRING} locale=([^&]*)
188 RewriteRule ^/opac/[a-z]{2}-[A-Z]{2}/extras/slimpac/(.*)$ /opac/%1/extras/slimpac/$1? [redirect]
189 <LocationMatch /opac/[a-z]{2}-[A-Z]{2}/extras/slimpac/>
190     AddOutputFilter INCLUDES;XMLENT .html
191 </LocationMatch>
192
193 # ----------------------------------------------------------------------------------
194 # Run server-side XUL and XHTML through xmlent to load the correct XML entities
195 # ----------------------------------------------------------------------------------
196 RewriteCond %{HTTP:Accept-Language} ([a-z]{2}-[A-Z]{2})
197 RewriteRule ^/xul/      -       [E=locale:%1]
198 RewriteRule ^/reports/  -       [E=locale:%1]
199
200 # Default to en-US if we haven't matched a locale of the form xx-YY 
201 RewriteCond %{HTTP:Accept-Language} !([a-z]{2}-[A-Z]{2})
202 RewriteRule ^/xul/      -       [E=locale:en-US]
203 RewriteRule ^/reports/  -       [E=locale:en-US]
204
205 # Default to en-US if we are just given en
206 RewriteCond %{ENV:locale} ^$ [OR]
207 RewriteCond %{ENV:locale} ^en$
208 RewriteRule . - [E=locale:en-US]
209
210 <LocationMatch /xul/.*\.x?html$>
211     Options +Includes
212     XMLEntEscapeScript "no"
213     XMLEntStripComments "yes"
214     XMLEntStripPI "yes"
215     XMLEntStripDoctype "yes"
216     XMLEntContentType "text/html; charset=utf-8"
217     AddOutputFilter INCLUDES;XMLENT .xhtml
218     AddOutputFilter INCLUDES;XMLENT .html
219     allow from all
220 </LocationMatch>
221
222
223 <LocationMatch /xul/.*\.xul$>
224     Options +Includes
225     XMLEntContentType "application/vnd.mozilla.xul+xml"
226     AddOutputFilter INCLUDES;XMLENT .xul
227     allow from all
228 </LocationMatch>
229
230 # ----------------------------------------------------------------------------------
231 # Self-serve password interface
232 # ----------------------------------------------------------------------------------
233 <Location /opac/password>
234     SetHandler perl-script
235     PerlHandler OpenILS::WWW::PasswordReset::password_reset
236     Options +ExecCGI
237     PerlSendHeader On
238     allow from all
239
240     # Force clients to use HTTPS
241     RewriteCond %{HTTPS} !=on [NC]
242     RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
243 </Location>
244
245 # ----------------------------------------------------------------------------------
246 # Supercat feeds
247 # ----------------------------------------------------------------------------------
248 <Location /opac/extras/oisbn>
249     SetHandler perl-script
250     PerlHandler OpenILS::WWW::SuperCat::oisbn
251     Options +ExecCGI
252     PerlSendHeader On
253     allow from all
254 </Location>
255 <Location /opac/extras/supercat>
256     SetHandler perl-script
257     PerlHandler OpenILS::WWW::SuperCat::supercat
258     Options +ExecCGI
259     PerlSendHeader On
260     allow from all
261 </Location>
262 <Location /opac/extras/unapi>
263     SetHandler perl-script
264     PerlHandler OpenILS::WWW::SuperCat::unapi
265     Options +ExecCGI
266     PerlSendHeader On
267     allow from all
268 </Location>
269 <Location /opac/extras/feed/bookbag>
270     SetHandler perl-script
271     PerlHandler OpenILS::WWW::SuperCat::bookbag_feed
272     Options +ExecCGI
273     PerlSendHeader On
274     allow from all
275 </Location>
276 <Location /opac/extras/opensearch>
277     SetHandler perl-script
278     PerlHandler OpenILS::WWW::SuperCat::opensearch_feed
279     Options +ExecCGI
280     PerlSendHeader On
281     allow from all
282 </Location>
283 <Location /opac/extras/sru>
284     SetHandler perl-script
285     PerlHandler OpenILS::WWW::SuperCat::sru_search
286     Options +ExecCGI
287     PerlSendHeader On
288     allow from all
289 </Location>
290 <Location /opac/extras/feed/freshmeat>
291     SetHandler perl-script
292     PerlHandler OpenILS::WWW::SuperCat::changes_feed
293     Options +ExecCGI
294     PerlSendHeader On
295     allow from all
296 </Location>
297 <Location /opac/extras/browse>
298     SetHandler perl-script
299     PerlHandler OpenILS::WWW::SuperCat::string_browse
300     Options +ExecCGI
301     PerlSendHeader On
302     allow from all
303 </Location>     
304 <Location /opac/extras/startwith>
305     SetHandler perl-script
306     PerlHandler OpenILS::WWW::SuperCat::string_startwith
307     Options +ExecCGI
308     PerlSendHeader On
309     allow from all
310 </Location>     
311         
312 # ----------------------------------------------------------------------------------
313 # Module for displaying OpenSRF API documentation
314 # ----------------------------------------------------------------------------------
315 <Location /opac/extras/docgen.xsl>
316     AddOutputFilter INCLUDES .xsl
317 </Location>
318
319 # ----------------------------------------------------------------------------------
320 # Module for processing staff-client offline scripts lives here
321 # ----------------------------------------------------------------------------------
322 <Directory "/openils/var/cgi-bin/offline">
323     AddHandler cgi-script .pl
324     AllowOverride None
325     Options +ExecCGI
326     allow from all
327 </Directory>
328         
329         
330 # ----------------------------------------------------------------------------------
331 # XXX Note, it's important to explicitly set the JSON encoding style 
332 # (OSRFGatewayLegacyJSON), since the default encoding style will likely change 
333 # with OpenSRF 1.0
334 # ----------------------------------------------------------------------------------
335 # OpenSRF JSON legacy gateway
336 # ----------------------------------------------------------------------------------
337 <Location /gateway>
338     SetHandler osrf_json_gateway_module
339     OSRFGatewayLegacyJSON "true"
340     allow from all
341 </Location>
342 # ----------------------------------------------------------------------------------
343 # New-style OpenSRF JSON gateway
344 # ----------------------------------------------------------------------------------
345 <Location /osrf-gateway-v1>
346     SetHandler osrf_json_gateway_module
347     OSRFGatewayLegacyJSON "false"
348     allow from all
349 </Location>
350
351 # ----------------------------------------------------------------------------------
352 # OpenSRF-over-HTTP translator
353 # (http://open-ils.org/dokuwiki/doku.php?id=opensrf_over_http)
354 # ----------------------------------------------------------------------------------
355 <Location /osrf-http-translator>
356     SetHandler osrf_http_translator_module
357     allow from all
358 </Location>
359
360 # ----------------------------------------------------------------------------------
361 # The exporter lives here
362 # ----------------------------------------------------------------------------------
363 <Location /exporter>
364     SetHandler perl-script
365     PerlSetVar OILSProxyTitle "Exporter Login"
366     PerlSetVar OILSProxyDescription "Please log in with an authorized staff account to export records"
367     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
368     PerlHandler OpenILS::WWW::Proxy OpenILS::WWW::Exporter
369     Options +ExecCGI
370     PerlSendHeader On
371     allow from all
372 </Location>
373
374 <Location /opac/extras/merge_template>
375     SetHandler perl-script
376     PerlSetVar OILSProxyTitle "Batch Update Login"
377     PerlSetVar OILSProxyDescription "Please log in to update records in batch"
378     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
379     PerlHandler OpenILS::WWW::Proxy OpenILS::WWW::TemplateBatchBibUpdate
380     PerlSendHeader On
381     Options +ExecCGI
382     allow from all
383 </Location>
384
385 <Location /opac/extras/circ>
386     SetHandler perl-script
387     PerlSetVar OILSProxyTitle "Circ Extras Login"
388     PerlSetVar OILSProxyDescription "Please log in with an authorized staff account to export records"
389     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
390     PerlHandler OpenILS::WWW::Proxy
391     Options +ExecCGI
392     PerlSendHeader On
393     allow from all
394 </Location>
395
396 # ----------------------------------------------------------------------------------
397 # Reporting output lives here
398 # ----------------------------------------------------------------------------------
399 <Location /reporter/>
400     SetHandler perl-script
401     PerlSetVar OILSProxyTitle "Report Login"
402     PerlSetVar OILSProxyDescription "Please log in with an authorized staff account to view this report"
403     PerlSetVar OILSProxyPermissions "VIEW_REPORT_OUTPUT"
404     PerlHandler OpenILS::WWW::Proxy
405     Options +ExecCGI
406     PerlSendHeader On
407     allow from all
408 </Location>
409
410 # ----------------------------------------------------------------------------------
411 # Selfcheck interface
412 # ----------------------------------------------------------------------------------
413 <LocationMatch .*/selfcheck.xml>
414     SetHandler perl-script
415     PerlSetVar OILSProxyTitle "Self-check Login"
416     PerlSetVar OILSProxyDescription "Please log in with an authorized staff account to activate the self-check interface"
417     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
418     PerlHandler OpenILS::WWW::Proxy
419     Options +ExecCGI
420     PerlSendHeader On
421     allow from all
422 </LocationMatch>
423
424
425 # ----------------------------------------------------------------------------------
426 # Reports GUI
427 # ----------------------------------------------------------------------------------
428 <LocationMatch /reports>
429     Options +Includes
430     AddOutputFilter INCLUDES;XMLENT .xhtml
431 </LocationMatch>
432
433 <LocationMatch /reports/fm_IDL.xml>
434     IDLChunkStripPI "yes"
435     IDLChunkEscapeScript "no"
436     IDLChunkStripComments "yes"
437     IDLChunkStripDoctype "yes"
438     IDLChunkContentType "application/xml; charset=utf-8"
439     AddOutputFilter INCLUDES;IDLCHUNK .xml
440 </LocationMatch>
441
442 # ----------------------------------------------------------------------------------
443 # EDI Message viewer
444 # ----------------------------------------------------------------------------------
445 <Location /edi>
446     SetHandler perl-script
447     PerlHandler OpenILS::WWW::EDI
448     Options +ExecCGI
449     PerlSendHeader On
450     allow from all
451 </Location>     
452
453 # ----------------------------------------------------------------------------------
454 # XML-RPC gateway
455 # ----------------------------------------------------------------------------------
456 <Location /xml-rpc>
457     SetHandler perl-script
458     PerlHandler OpenILS::WWW::XMLRPCGateway
459     Options +ExecCGI
460     PerlSendHeader On
461     allow from all
462 </Location>
463
464 # ----------------------------------------------------------------------------------
465 # Conify - next-generation Evergreen administration interface
466 # ----------------------------------------------------------------------------------
467 RewriteRule ^/conify/([a-z]{2}-[A-Z]{2})/global/(.*)$ /conify/global/$2 [E=locale:$1,L]
468 <Location /conify>
469     Options +Includes
470     XMLEntStripPI "yes"
471     XMLEntEscapeScript "no"
472     XMLEntStripComments "no"
473     XMLEntContentType "text/html; charset=utf-8"
474     AddOutputFilter INCLUDES;XMLENT .html
475  
476     SetHandler perl-script
477     PerlSetVar OILSProxyTitle "Dojo Admin Login"
478     PerlSetVar OILSProxyDescription "Please log in with an authorized staff account to administer Evergreen"
479     PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
480     PerlHandler OpenILS::WWW::Proxy
481     Options +ExecCGI
482     PerlSendHeader On
483     allow from all
484 </Location>
485
486 # ----------------------------------------------------------------------------------
487 # Vandelay importers / exporters (your Web interface to bibliographic travel)
488 # ----------------------------------------------------------------------------------
489 RedirectMatch 301 ^/vandelay/vandelay.xml(.*)$ /vandelay/en-US/vandelay.xml$1
490
491 RewriteRule ^/vandelay/([a-z]{2}-[A-Z]{2})/(.*)$ /vandelay/$2 [E=locale:$1]
492
493 <LocationMatch /vandelay.*xml>
494     XMLEntStripPI "yes"
495     XMLEntEscapeScript "no"
496     XMLEntStripComments "yes"
497     XMLEntContentType "text/html; charset=utf-8"
498     XMLEntStripDoctype "yes"
499     AddOutputFilter INCLUDES;XMLENT .xml
500         SetHandler perl-script
501         PerlSetVar OILSProxyTitle "Vandelay Login"
502         PerlSetVar OILSProxyDescription "Please log in with an authorized staff account to import MARC records"
503         PerlSetVar OILSProxyPermissions "IMPORT_MARC"
504         PerlHandler OpenILS::WWW::Proxy
505         Options +ExecCGI
506         PerlSendHeader On
507         allow from all
508 </LocationMatch>
509 <Location /vandelay-upload>
510     SetHandler perl-script
511     PerlHandler OpenILS::WWW::Vandelay::spool_marc
512     Options +ExecCGI
513     allow from all
514 </Location>
515
516 # OpenURL 0.1 searching based on OpenSearch
517 RewriteMap openurl prg:/openils/bin/openurl_map.pl
518 RewriteCond %{QUERY_STRING} (^.*$)
519 RewriteRule ^/openurl$ ${openurl:%1} [NE,PT]
520
521
522
523 # General Evergreen web template processor
524 <Location /eg>
525     SetHandler perl-script
526     PerlHandler OpenILS::WWW::EGWeb
527     Options +ExecCGI
528     PerlSendHeader On
529     allow from all
530     <IfModule mod_deflate.c>
531         SetOutputFilter DEFLATE
532         BrowserMatch ^Mozilla/4 gzip-only-text/html
533         BrowserMatch ^Mozilla/4\.0[678] no-gzip
534         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
535         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
536         <IfModule mod_headers.c>
537             Header append Cache-Control "public"
538             Header append Vary User-Agent env=!dont-vary
539         </IfModule>
540     </IfModule>
541 </Location>
542 <LocationMatch ^/(images|css|js)/>
543     # should pick up the default expire time from eg.conf...
544     <IfModule mod_deflate.c>
545         SetOutputFilter DEFLATE
546         BrowserMatch ^Mozilla/4 gzip-only-text/html
547         BrowserMatch ^Mozilla/4\.0[678] no-gzip
548         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
549         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
550         <IfModule mod_headers.c>
551             Header append Cache-Control "public"
552             Header append Vary User-Agent env=!dont-vary
553         </IfModule>
554     </IfModule>
555 </LocationMatch>
556 <Location /eg/opac>
557     PerlSetVar OILSWebContextLoader "OpenILS::WWW::EGCatLoader"
558     # Expire the HTML immediately since we're loading dynamic data for each page
559     ExpiresActive On
560     ExpiresByType text/html "access plus 0 seconds"
561 </Location>
562
563
564 # Note: the template processor will decline handling anything it does not
565 # have an explicit configuration for, which means it will fall back to 
566 # Apache to serve the file.  However, in the interest of speed, go ahead 
567 # and tell Apache to avoid asking OpenILS::WWW::EGWeb for static content.
568 # Add more exemptions as needed.
569 <LocationMatch ^/eg/.*(\.js|\.css|\.html|\.xhtml|\.xml|\.jpg|\.png|\.gif)$>
570     SetHandler None
571 </LocationMatch>
572
573 # ----------------------------------------------------------------------------------
574 # Some mod_deflate logging setup
575 # ----------------------------------------------------------------------------------
576 <IfModule mod_deflate.c>
577     DeflateFilterNote Input instream
578     DeflateFilterNote Output outstream
579     DeflateFilterNote Ratio ratio
580
581     LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
582     CustomLog /var/log/apache2/deflate_log deflate
583 </IfModule>
584
585
586 <Location /IDL2js>
587
588     SetHandler perl-script
589     PerlHandler OpenILS::WWW::IDL2js
590     Options +ExecCGI
591     PerlSendHeader On
592     allow from all
593
594     <IfModule mod_headers.c>
595         Header append Cache-Control "public"
596     </IFModule>
597
598     <IfModule mod_deflate.c>
599         SetOutputFilter DEFLATE
600         BrowserMatch ^Mozilla/4 gzip-only-text/html
601         BrowserMatch ^Mozilla/4\.0[678] no-gzip
602         BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
603         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
604         <IfModule mod_headers.c>
605             Header append Vary User-Agent env=!dont-vary
606         </IfModule>
607     </IfModule>
608 </Location>