Skip to content
This repository has been archived by the owner on Mar 27, 2022. It is now read-only.
/ page_speed_plus Public archive

Improve your TYPO3 page speed by using common best practices and other shenanigans :).

License

Notifications You must be signed in to change notification settings

atomicptr/page_speed_plus

Repository files navigation

pagespeed+

Improve your TYPO3 page speed by using common best practices and other shenanigans :).

Download

page_speed_plus on TER

Or just install it via composer:

$ composer require atomicptr/page_speed_plus

Features

Configuration

You can use the constants editor or just overwrite the TypoScript like this:

plugin.tx_page_speed_plus {
    settings {
        http2 {
            serverPushEnable = 1
            maxHeaderLength = 8190
        }

        htmlCompress {
            enable = 1
        }
    }
}

How to enable JavaScript compression

You can enable JavaScript compression by adding this to your configuration:

config.compressJs = 1

Other ways to improve your website performance

  • Set your FE compression level to 9 in the install tool (and also add this to your .htaccess)
    <FilesMatch "\.js\.gzip$">
        AddType "text/javascript" .gzip
    </FilesMatch>
    <FilesMatch "\.css\.gzip$">
        AddType "text/css" .gzip
    </FilesMatch>
    AddEncoding gzip .gzip
    
  • Optimize your images, this is REALLY important!

Support me

Buy Me A Coffee

License

MIT

About

Improve your TYPO3 page speed by using common best practices and other shenanigans :).

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages