Skip to content

Commit

Permalink
Added .htaccess with mod_deflate support.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 1, 2010
1 parent 230cd8e commit d1b980a
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
43 changes: 43 additions & 0 deletions .htaccess
@@ -0,0 +1,43 @@
<ifmodule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript application/xml
</ifmodule>
<ifmodule mod_setenvif.c>
# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html
# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4\.0[678] no-gzip
# MSIE masquerades as Netscape, but it is fine
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
# Don't compress images
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary
</ifmodule>
<ifmodule mod_headers.c>
# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
</ifmodule>

<Files .htaccess>
order allow,deny
deny from all
</Files>

<Files .hg>
order allow,deny
deny from all
</Files>

<Files dbpass.php>
order allow,deny
deny from all
</Files>

<Files database.php>
order allow,deny
deny from all
</Files>

<Files steamtags.php>
order allow,deny
deny from all
</Files>

1 change: 0 additions & 1 deletion steamprofile.php
@@ -1,5 +1,4 @@
<?php
ob_start('ob_gzhandler'); // compress the XML we send.
header('Content-type: application/xml; charset=UTF-8');

require_once('steamtags.php');
Expand Down

0 comments on commit d1b980a

Please sign in to comment.