Ignore:
Timestamp:
Feb 12, 2010, 3:52:35 AM (14 years ago)
Author:
mitchb
Message:
What's that?  I can't hear you over the static!

o Make Apache, suEXEC, and static-cat case-insensitive about extensions
o Add wav, mid, and midi as static extensions
o Add missing mime-type for svg files
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/common/oursrc/execsys/upd-execsys

    r1358 r1464  
    6161 avi
    6262 il
    63  JPG
    6463 xhtml
    6564 svg
    6665 xaml
    6766 xap
     67 wav
     68 mid
     69 midi
    6870);
    6971
     
    7779        foreach my $ext (split " ", $exts) {
    7880                $map{$ext} = $type;
    79                 $map{uc($ext)} = $type;
    8081        }
    8182}
     
    8990foreach my $ext (@dynamic, @static) {
    9091        print CONF <<END
    91 <Files *.$ext>
     92<FilesMatch "(?i)\\.$ext\$">
    9293        SetHandler cgi-script
    9394        Options +ExecCGI
    94 </Files>
     95</FilesMatch>
    9596
    9697END
Note: See TracChangeset for help on using the changeset viewer.