-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (20 loc) · 1.74 KB
/
Copy path.env.example
File metadata and controls
31 lines (20 loc) · 1.74 KB
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
# Nextcloud
# Copy this file to .env and fill in your values.
# NEVER commit .env to version control — it contains secrets.
# ─── Database ─────────────────────────────────────────────────────────────────
# MariaDB root password (used internally only — not exposed to Nextcloud app)
NEXTCLOUD_DB_ROOT_PASSWORD=your_root_password_here
# MariaDB password for the nextcloud application user
NEXTCLOUD_DB_PASSWORD=your_db_password_here
# ─── Redis ────────────────────────────────────────────────────────────────────
NEXTCLOUD_REDIS_PASSWORD=your_redis_password_here
# ─── Admin Account (first run only) ───────────────────────────────────────────
# After first startup these vars are ignored — manage users via the web UI.
NEXTCLOUD_ADMIN_USER=admin
NEXTCLOUD_ADMIN_PASSWORD=your_admin_password_here
# ─── Traefik ──────────────────────────────────────────────────────────────────
# Hostname Traefik will route to Nextcloud
NEXTCLOUD_DOMAIN=cloud.yourdomain.com
# ─── Ports (optional) ─────────────────────────────────────────────────────────
# Host port for direct access — Traefik uses container port 80 directly
# NEXTCLOUD_PORT=8020