1
0
Fork 0
mirror of synced 2024-09-28 23:41:23 +12:00

Merge branch 'master' of github.com:appwrite/appwrite

This commit is contained in:
eldadfux 2019-11-02 17:04:31 +02:00
commit fa895871e8
2 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@ function setEnvironmentVariable() {
}
# Grep for variables that look like MySQL (APP_)
for _curVar in `env | grep _APP_ | awk -F = '{print $1}'`;do
for _curVar in $(env | grep _APP_ | awk -F = '{print $1}');do
# awk has split them by the equals sign
# Pass the name and value to our function
setEnvironmentVariable ${_curVar} ${!_curVar}

View file

@ -10,7 +10,7 @@ Set your server running environment. By default, the var is set to 'development'
### _APP_OPTIONS_ABUSE
Allows you to disable abuse checks and API rate limiting. By default, set to 'enabled'. To cancel the abuse checking, set to 'disabled'. It is not recommended to disable this check in a production environment.
Allows you to disable abuse checks and API rate limiting. By default, set to 'enabled'. To cancel the abuse checking, set to 'disabled'. It is not recommended to disable this check-in a production environment.
### _APP_OPENSSL_KEY_V1