~ubuntu-branches/debian/stretch/alpine/stretch

« back to all changes in this revision

Viewing changes to web/cgi/_htaccess

  • Committer: Bazaar Package Importer
  • Author(s): Asheesh Laroia
  • Date: 2007-02-17 13:17:42 UTC
  • Revision ID: james.westby@ubuntu.com-20070217131742-99x5c6cpg1pbkdhw
Tags: upstream-0.82+dfsg
ImportĀ upstreamĀ versionĀ 0.82+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Tweek server to encourage caching and set appropriate type for icons
 
3
#
 
4
DirectoryIndex greeting.tcl
 
5
 
 
6
AddType image/x-icon .ico
 
7
 
 
8
AddHandler cgi-script tcl
 
9
 
 
10
<IfModule mod_headers.c>
 
11
 
 
12
<Files *.gif>
 
13
Header append Cache-Control "public"
 
14
</Files>
 
15
 
 
16
<Files *.jpg>
 
17
Header append Cache-Control "public"
 
18
</Files>
 
19
 
 
20
<Files *.jpeg>
 
21
Header append Cache-Control "public"
 
22
</Files>
 
23
 
 
24
<Files *.js>
 
25
Header append Cache-Control "public"
 
26
</Files>
 
27
 
 
28
<Files *.css>
 
29
Header append Cache-Control "public"
 
30
</Files>
 
31
 
 
32
</IfModule>