## FPM Tune The fpm-tune.ini settings are now configurable by `.env`. Please add this to your servers configs: ``` # fpm-tune, see: https://spot13.com/pmcalculator/ FPM_MAX_CHILDREN=131 FPM_START_SERVERS=32 FPM_MIN_SPARE_SERVERS=32 FPM_MAX_SPARE_SERVERS=98 ``` ## SMTP Add SMTP Config to your .env file: ``` # COMPOSE_FILE="$COMPOSE_FILE:compose.smtp.yml" # See https://github.com/nextcloud/docker#auto-configuration-via-environment-variables for default values # SMTP_AUTHTYPE= # SMTP_HOST= # SMTP_SECURE= # SMTP_NAME= # SMTP_PORT= # MAIL_FROM_ADDRESS= # MAIL_DOMAIN= # SECRET_SMTP_PASSWORD_VERSION=v1 ``` ## Post Deploy Commands Some Apps can also be managed with abra app cmd! ``` # COMPOSE_FILE="$COMPOSE_FILE:compose.apps.yml" # APPS="calendar sociallogin onlyoffice" # ONLYOFFICE_URL=https://onlyoffice.example.com # BBB_URL=https://talk.example.org/bigbluebutton/ # trailing slash! ```