From 9b14a8f08dca3f50298e147dbf9491e333e2e8ad Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Wed, 21 Jan 2026 10:41:29 +0530 Subject: [PATCH] Add _APP_COMPRESSION_ENABLED env variable to .env and docker-compose The _APP_COMPRESSION_ENABLED environment variable is used in http.php but was missing from .env and docker-compose.yml, preventing it from being configured in containerized deployments. --- .env | 1 + docker-compose.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.env b/.env index c7ee93e12a..1947ddff1a 100644 --- a/.env +++ b/.env @@ -2,6 +2,7 @@ _APP_ENV=development _APP_EDITION=self-hosted _APP_LOCALE=en _APP_WORKER_PER_CORE=6 +_APP_COMPRESSION_ENABLED=enabled _APP_COMPRESSION_MIN_SIZE_BYTES=1024 _APP_CONSOLE_WHITELIST_ROOT=disabled _APP_CONSOLE_WHITELIST_EMAILS= diff --git a/docker-compose.yml b/docker-compose.yml index afab358018..fdcfce6ff6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -112,6 +112,7 @@ services: - _APP_EDITION - _APP_WORKER_PER_CORE - _APP_LOCALE + - _APP_COMPRESSION_ENABLED - _APP_COMPRESSION_MIN_SIZE_BYTES - _APP_CONSOLE_WHITELIST_ROOT - _APP_CONSOLE_WHITELIST_EMAILS