How to enable compression in a PHP application on a hero?

I am running HTML5 Boilerplate compression in my .htaccess file in a heroku application. However, it does not work, and none of the files are actually compressed.

I added the heroku php buildpack collector with:

heroku config:set BUILDPACK_URL=https://github.com/heroku/heroku-buildpack-php

but it seemed to do nothing. I'm new to Heroku, so does anyone have any tips?

HTML5 Coaxial code htaccess:

# Force compression for mangled headers.
# http://developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping
<IfModule mod_setenvif.c>
    <IfModule mod_headers.c>
        SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
        RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
    </IfModule>
</IfModule>

# Compress all output labeled with one of the following MIME-types
# (for Apache versions below 2.3.7, you don't need to enable `mod_filter`
#  and can remove the `<IfModule mod_filter.c>` and `</IfModule>` lines
#  as `AddOutputFilterByType` is still in the core directives).
<IfModule mod_filter.c>
    AddOutputFilterByType DEFLATE application/atom+xml \
                                  application/javascript \
                                  application/json \
                                  application/rss+xml \
                                  application/vnd.ms-fontobject \
                                  application/x-font-ttf \
                                  application/x-web-app-manifest+json \
                                  application/xhtml+xml \
                                  application/xml \
                                  font/opentype \
                                  image/svg+xml \
                                  image/x-icon \
                                  text/css \
                                  text/html \
                                  text/plain \
                                  text/x-component \
                                  text/xml
</IfModule>

+4
source share
1 answer

I found that using another buildpack worked!

heroku config:set BUILDPACK_URL=http://github.com/iphoting/heroku-buildpack-php-tyler

This is a great buildpack that allows gzip compression and sets up a new relic.

+2
source

All Articles