diff options
Diffstat (limited to 'roundcube/.env.template')
-rw-r--r-- | roundcube/.env.template | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/roundcube/.env.template b/roundcube/.env.template new file mode 100644 index 0000000..1a61b19 --- /dev/null +++ b/roundcube/.env.template @@ -0,0 +1,38 @@ +# ====================================== +# Roundcube Configuration Template +# Copy to '.env' and replace values +# ====================================== + +# ------------------------------ +# Database Configuration +# ------------------------------ +MYSQL_ROOT_PASSWORD=your_strong_db_root_password +MYSQL_DATABASE=roundcubemail + +# ------------------------------ +# Roundcube Settings +# ------------------------------ +ROUNDCUBEMAIL_DB_TYPE=mysql +ROUNDCUBEMAIL_DB_HOST=roundcubedb +ROUNDCUBEMAIL_DB_PASSWORD=${MYSQL_ROOT_PASSWORD} +ROUNDCUBEMAIL_SKIN=elastic +ROUNDCUBEMAIL_DEFAULT_HOST=tls://your.mail.server +ROUNDCUBEMAIL_SMTP_SERVER=tls://your.mail.server + +# ------------------------------ +# Paths (Relative to compose file) +# ------------------------------ +DB_DATA_PATH=./db/mysql +WWW_DATA_PATH=./www + +# ------------------------------ +# Port Mapping +# ------------------------------ +MYSQL_PORT=33006 +ROUNDCUBE_PORT=9001 + +# ============================================= +# Security Notice: +# 1. Never commit real .env to version control +# 2. Change all credentials in production +# ============================================= |