On Sun, Apr 17, 2011 at 07:05:38PM +0200, DAVIDE VAGHETTI wrote:
>  
> Is there anything else I can do to speed things up?

We use these apache optimizations:

        # Compress text-type content:
        AddOutputFilterByType DEFLATE text/html
        AddOutputFilterByType DEFLATE text/plain
        AddOutputFilterByType DEFLATE text/xml
        AddOutputFilterByType DEFLATE text/css
        AddOutputFilterByType DEFLATE application/javascript
        AddOutputFilterByType DEFLATE application/x-javascript

        # Don't use inode in ETag, in case we're running on a cluster
        # where static file inode numbers will be different between the
        # nodes
        FileETag MTime Size

        # Add far future expiry headers to static content. Reduce these
        # to much shorter (1 hour?) before you plan on any upgrades to
        # SOGo, to be sure clients quickly will pick up new versions of
        # any content.
        <Location /SOGo.woa/WebServerResources/>
                ExpiresActive on
                ExpiresDefault "access plus 1 week"
        </Location>
        <Location /SOGo/WebServerResources/>
                ExpiresActive on
                ExpiresDefault "access plus 1 week"
        </Location>

        # Point this at your SOGoFaviconRelativeURL
        <FilesMatch "^favico\.ico$">
                ExpiresActive on
                ExpiresDefault "access plus 1 week"
        </FilesMatch>



  -jf
-- 
[email protected]
https://inverse.ca/sogo/lists

Reply via email to