diff options
author | clyhtsuriva <aimeric@adjutor.xyz> | 2025-05-24 22:09:27 +0200 |
---|---|---|
committer | clyhtsuriva <aimeric@adjutor.xyz> | 2025-05-24 22:09:27 +0200 |
commit | 8a4cc7877f8f352dcc5df95146878d516fb2cad2 (patch) | |
tree | 0e674d7c549a20793be9058c699d0c13e1ca52ae /roundcube/.env.template | |
parent | 1a24fbc193d5d881ea6caef463153f8e23ff792b (diff) |
Using .env for roundcube and optimizing grafana .env usage
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 +# ============================================= |