diff --git a/.env b/.env index 30b4a83f79..9764cfe894 100644 --- a/.env +++ b/.env @@ -24,6 +24,6 @@ _APP_SMTP_PORT=25 _APP_SMTP_SECURE= _APP_SMTP_USERNAME= _APP_SMTP_PASSWORD= -_APP_STORAGE_LIMIT=100000000 +_APP_STORAGE_LIMIT=10000000 _APP_FUNCTIONS_TIMEOUT=900 _APP_FUNCTIONS_CONTAINERS=10 diff --git a/app/config/variables.php b/app/config/variables.php index 66308fcef0..3da5a21e25 100644 --- a/app/config/variables.php +++ b/app/config/variables.php @@ -135,7 +135,7 @@ return [ ], [ 'name' => '_APP_STORAGE_LIMIT', - 'default' => '100000000', + 'default' => '10000000', 'required' => false, 'question' => '', ], diff --git a/app/http.php b/app/http.php index e270332c9e..07e0fff45e 100644 --- a/app/http.php +++ b/app/http.php @@ -23,7 +23,7 @@ sleep(2); $http = new Server("0.0.0.0", 80); -$payloadSize = max(4000000 /* 4mb */, App::getEnv('_APP_STORAGE_LIMIT', 10000000)); +$payloadSize = max(4000000 /* 4mb */, App::getEnv('_APP_STORAGE_LIMIT', 10000000 /* 10mb */)); $http ->set([ diff --git a/app/views/install/compose.phtml b/app/views/install/compose.phtml index 7f9ff02970..6ec157ce7e 100644 --- a/app/views/install/compose.phtml +++ b/app/views/install/compose.phtml @@ -243,6 +243,9 @@ services: - _APP_REDIS_PORT - _APP_SMTP_HOST - _APP_SMTP_PORT + - _APP_SMTP_SECURE + - _APP_SMTP_USERNAME + - _APP_SMTP_PASSWORD appwrite-schedule: image: appwrite/appwrite: