blob: 1a61b19ef3a431f8c1d580982f0cd175f7092169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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
# =============================================
|