forked from denysdovhan/smart-home
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.env.example
More file actions
32 lines (27 loc) · 929 Bytes
/
common.env.example
File metadata and controls
32 lines (27 loc) · 929 Bytes
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
# Example shared environment for all stacks
#
# Copy this file to `common.env` and adjust values as needed.
# This file is safe to publish; it contains no secrets.
# Common environment
TZ=Europe/Kyiv
PUID=1000
PGID=1000
DOCKER=.docker # Directory for docker-related data inside the repo
# Network
# Public base domain used by exposed services (change to your domain)
PUBLIC_DOMAIN=domain.tld
# Private/internal domain (used locally only)
PRIVATE_DOMAIN=domain.internal
# Email (SMTP)
# Configure these if any service needs to send mail
SMTP_HOST=smtp-relay.example.com
SMTP_PORT=587
SMTP_LOGIN=name@example.com
SMTP_TOKEN=change-me-secret-token
EMAIL_TO=email@example.com
# Storage
# Absolute path where persistent data is stored/mounted on the host
STORAGE=/path/to/storage
# Notes:
# - Keep this file as a template only. Do not put real secrets here.
# - Per-stack `.env` files can override any of these values if needed.