Skip to content

Instantly share code, notes, and snippets.

@jjrom
Last active November 24, 2023 02:45
Show Gist options
  • Save jjrom/c8fbf291d56287753777 to your computer and use it in GitHub Desktop.
Save jjrom/c8fbf291d56287753777 to your computer and use it in GitHub Desktop.
Enable compression on Apache server
Add this to apache configuration file (not in .htaccess !)
<Location />
SetOutputFilter DEFLATE
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
SetEnvIfNoCase Request_URI \.(?:mp3|wav|wma|au|m4p|snd|mid|wmv|mpg|mpeg|mp4|qt|mov)$ no-gzip dont-vary
SetEnvIfNoCase Request_URI \.pdf$ no-gzip dont-vary
SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|gz2|sit|rar)$ no-gzip dont-vary
</Location>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment