forked from adelasofia/developers.redhat.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.htaccess
22 lines (19 loc) · 787 Bytes
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<IfModule mod_deflate.c>
############################################
## GZIP text content
## http://developer.yahoo.com/performance/rules.html#gzip
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript text/javascript
</IfModule>
<IfModule mod_headers.c>
############################################
## Force the keep-alive header to be sent
## PageSpeed tells us this isn't been sent correctly by jboss.org
Header set Connection keep-alive
</IfModule>
<IfModule mod_expires.c>
ExpiresActive On
############################################
## Add default Expires header
## http://developer.yahoo.com/performance/rules.html#expires
ExpiresDefault "access plus 30 minutes"
</IfModule>