-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
63 lines (47 loc) · 1.92 KB
/
.env.example
File metadata and controls
63 lines (47 loc) · 1.92 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# ============================================================
# DOMAIN CONFIGURATION
# ============================================================
# Your root domain (e.g. example.com)
DOMAIN=example.com
# Subdomain for n8n (e.g. n8n → n8n.example.com)
N8N_SUBDOMAIN=n8n
# Subdomain for Baserow (e.g. baserow → baserow.example.com)
BASEROW_SUBDOMAIN=baserow
# ============================================================
# POSTGRESQL
# ============================================================
# Superuser credentials for PostgreSQL
POSTGRES_USER=automation
POSTGRES_PASSWORD=changeme_use_strong_password
# Default DB created at init (not used directly by apps)
POSTGRES_DB=automation
# Database names for each service (auto-created by each app on first run)
N8N_DB_NAME=n8n
BASEROW_DB_NAME=baserow
# ============================================================
# N8N
# ============================================================
# Generate with: openssl rand -hex 32
# WARNING: changing this after first run will break all encrypted credentials
N8N_ENCRYPTION_KEY=
# Full public URL n8n is reachable at (used for webhooks)
WEBHOOK_URL=https://n8n.example.com
# Email sending mode: smtp | (leave empty to disable)
N8N_EMAIL_MODE=smtp
# SMTP settings (only required if N8N_EMAIL_MODE=smtp)
N8N_SMTP_HOST=smtp.example.com
N8N_SMTP_PORT=587
N8N_SMTP_USER=user@example.com
N8N_SMTP_PASS=
# Timezone (see: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)
GENERIC_TIMEZONE=Europe/Athens
# ============================================================
# BASEROW
# ============================================================
# Generate with: openssl rand -hex 32
BASEROW_SECRET_KEY=
# ============================================================
# CADDY / SSL
# ============================================================
# Email used for Let's Encrypt certificate registration and renewal notices
LETSENCRYPT_EMAIL=your@email.com