Never been to TextSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

About this user

Jason Hoffman http://textdrive.com/

« Newer Snippets
Older Snippets »
2 total  XML / RSS feed 

A complete mod_deflate configuration

<IfModule mod_deflate.c>  
#General Configuration settings: use ratio method and highest compression
DeflateFilterNote ratio
DeflateCompressionLevel 9

#Approach 1: Implicit ("Set") compression
## There are potential issues with compressing everything 
## It will for example send xml compressed to web services or flash
#SetOutputFilter DEFLATE
#SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
#SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary
#SetEnvIfNoCase Request_URI \.pdf$ no-gzip dont-vary
#SetEnvIfNoCase Request_URI \.avi$ no-gzip dont-vary
#SetEnvIfNoCase Request_URI \.mov$ no-gzip dont-vary
#SetEnvIfNoCase Request_URI \.mp3$ no-gzip dont-vary
#SetEnvIfNoCase Request_URI \.mp4$ no-gzip dont-vary
#SetEnvIfNoCase Request_URI \.rm$ no-gzip dont-vary

##Approach 2: Explicit ("Add") compression by mime-type

AddOutputFilterByType DEFLATE application/x-httpd-php
AddOutputFilterByType DEFLATE application/x-httpd-fastphp
AddOutputFilterByType DEFLATE application/x-httpd-eruby
AddOutputFilterByType DEFLATE text/html
# Or by extension
# AddOutputFilter DEFLATE html
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE image/svg+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/atom_xml
AddOutputFilterByType DEFLATE application/x-javascript

# Implicit compression on the way in
SetInputFilter DEFLATE

# Explicit compression on the way in, there is no AddInputFilterByType
# AddInputFilter DEFLATE html

IfModule>

Beware the trailing slash in Proxy balancer

This is correct

ProxyPass / balancer://app                                                                                                                                                                                                         
<Proxy balancer://app>                                                                                                                                                                                                             
BalancerMember http://10.0.0.166:8181                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8182                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8183                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8184                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8185                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8186                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8187                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8188                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8189                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8190                                                                                                                                                                                                  
Proxy>  


This is not

ProxyPass / balancer://app                                                                                                                                                                                                         
<Proxy balancer://app>                                                                                                                                                                                                             
BalancerMember http://10.0.0.166:8181/                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8182/                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8183/                                                                                                                                                                                                
BalancerMember http://10.0.0.166:8184/                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8185/                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8186/                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8187/                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8188/                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8189/                                                                                                                                                                                                  
BalancerMember http://10.0.0.166:8190/                                                                                                                                                                                                  
Proxy>  


This is also not correct

ProxyPass / balancer://app/                                                                                                                                                                                                        
<Proxy balancer://app/>                                                                                                                                                                                                            
BalancerMember http://10.0.0.166:8181/                                                                                                                                                                                                 
BalancerMember http://10.0.0.166:8182/                                                                                                                                                                                                 
BalancerMember http://10.0.0.166:8183/                                                                                                                                                                                                 
BalancerMember http://10.0.0.166:8184/                                                                                                                                                                                                 
BalancerMember http://10.0.0.166:8185/                                                                                                                                                                                                 
Proxy> 
« Newer Snippets
Older Snippets »
2 total  XML / RSS feed