Merge pull request #56 from gordonbanderson/3.1

Addition of gpx and kml files to 3.1
This commit is contained in:
Ingo Schommer 2013-11-22 04:32:41 -08:00
commit c7fe54d082
2 changed files with 4 additions and 2 deletions

View File

@ -23,7 +23,7 @@
# does not support regular expression case insensitive matches using PCRE style. # does not support regular expression case insensitive matches using PCRE style.
# #
Deny from all Deny from all
<FilesMatch "\.(?i:html|htm|xhtml|js|css|bmp|png|gif|jpg|jpeg|ico|pcx|tif|tiff|au|mid|midi|mpa|mp3|ogg|m4a|ra|wma|wav|cda|avi|mpg|mpeg|asf|wmv|m4v|mov|mkv|mp4|ogv|webm|swf|flv|ram|rm|doc|docx|txt|rtf|xls|xlsx|pages|ppt|pptx|pps|csv|cab|arj|tar|zip|zipx|sit|sitx|gz|tgz|bz2|ace|arc|pkg|dmg|hqx|jar|xml|pdf)$"> <FilesMatch "\.(?i:html|htm|xhtml|js|css|bmp|png|gif|jpg|jpeg|ico|pcx|tif|tiff|au|mid|midi|mpa|mp3|ogg|m4a|ra|wma|wav|cda|avi|mpg|mpeg|asf|wmv|m4v|mov|mkv|mp4|ogv|webm|swf|flv|ram|rm|doc|docx|txt|rtf|xls|xlsx|pages|ppt|pptx|pps|csv|cab|arj|tar|zip|zipx|sit|sitx|gz|tgz|bz2|ace|arc|pkg|dmg|hqx|jar|xml|pdf|gpx|kml)$">
Allow from all Allow from all
</FilesMatch> </FilesMatch>

View File

@ -92,6 +92,8 @@ directory.
<add fileExtension=".jar" allowed="true" /> <add fileExtension=".jar" allowed="true" />
<add fileExtension=".xml" allowed="true" /> <add fileExtension=".xml" allowed="true" />
<add fileExtension=".pdf" allowed="true" /> <add fileExtension=".pdf" allowed="true" />
<add fileExtension=".gpx" allowed="true" />
<add fileExtension=".kml" allowed="true" />
</fileExtensions> </fileExtensions>
</requestFiltering> </requestFiltering>
</security> </security>