feat(ingress-nginx): enable gzip and brotli compression
This commit is contained in:
parent
5fe4a97364
commit
03c5e3562e
2 changed files with 12 additions and 0 deletions
|
|
@ -1,5 +1,13 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.5.0] - 2024-11-23
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Enable gzip compression on Ingress-NGINX
|
||||||
|
- Enable brotli compression on Ingress-NGINX
|
||||||
|
- Set brotli level to `6`
|
||||||
|
|
||||||
## [0.4.0] - 2024-11-23
|
## [0.4.0] - 2024-11-23
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
||||||
|
|
@ -46,3 +46,7 @@ spec:
|
||||||
use-proxy-protocol: "true"
|
use-proxy-protocol: "true"
|
||||||
use-forwarded-headers: "true"
|
use-forwarded-headers: "true"
|
||||||
enable-real-ip: "true"
|
enable-real-ip: "true"
|
||||||
|
use-gzip: "true"
|
||||||
|
enable-brotli: "true"
|
||||||
|
brotli-level: "6"
|
||||||
|
use-http2: "true"
|
||||||
|
|
|
||||||
Reference in a new issue