https://github.com/atomicptr/page_speed_plus
Improve your TYPO3 page speed by using common best practices and other shenanigans :).
https://github.com/atomicptr/page_speed_plus
compression http2 pagespeed typo3 typo3-extension
Last synced: 19 days ago
JSON representation
Improve your TYPO3 page speed by using common best practices and other shenanigans :).
- Host: GitHub
- URL: https://github.com/atomicptr/page_speed_plus
- Owner: atomicptr
- License: mit
- Archived: true
- Created: 2017-08-24T11:18:55.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-28T13:31:09.000Z (over 7 years ago)
- Last Synced: 2025-10-19T20:42:30.585Z (4 months ago)
- Topics: compression, http2, pagespeed, typo3, typo3-extension
- Language: PHP
- Homepage:
- Size: 895 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pagespeed+
Improve your TYPO3 page speed by using common best practices and other shenanigans :).
## Download
[page\_speed\_plus on TER](https://extensions.typo3.org/extension/page_speed_plus/)
Or just install it via composer:
```shell
$ composer require atomicptr/page_speed_plus
```
## Features
* HTTP/2 Server Push
* HTML Compression via [wyrihaximus/html-compress](https://github.com/WyriHaximus/HtmlCompress)
* JavaScript Compression via [tedious/JShrink](https://github.com/tedious/JShrink)
## Configuration
You can use the constants editor or just overwrite the TypoScript like this:
```typoscript
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:
```typoscript
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)
```
AddType "text/javascript" .gzip
AddType "text/css" .gzip
AddEncoding gzip .gzip
```
* Optimize your images, this is **REALLY important**!
## Support me
## License
MIT
