-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (23 loc) · 935 Bytes
/
.env.example
File metadata and controls
28 lines (23 loc) · 935 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
# =============================================================================
# eigenstack — environment configuration
# Copy to .env and fill in your values
# NEVER commit .env to git
# =============================================================================
# --- Domain ---
# Local dev: eigenstack.local
# Production: eigenstack.serg-markovich.de
BASE_DOMAIN=eigenstack.local
# --- Traefik ---
TRAEFIK_DASHBOARD_HOST=traefik.eigenstack.local
# Set to your email for Let's Encrypt (production only)
ACME_EMAIL=me@serg-markovich.de
# --- Vaultwarden ---
VAULTWARDEN_HOST=vault.eigenstack.local
# Generate with: openssl rand -base64 48
VAULTWARDEN_ADMIN_TOKEN=changeme_generate_with_openssl
# --- Traefik auth (dashboard basic auth) ---
# Generate with: htpasswd -nb admin yourpassword
# Example below is admin:admin — CHANGE THIS
TRAEFIK_DASHBOARD_AUTH=admin:$$apr1$$xyz$$changeme
# --- Timezone ---
TZ=Europe/Berlin