-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
68 lines (57 loc) · 2.33 KB
/
.env.example
File metadata and controls
68 lines (57 loc) · 2.33 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
64
65
66
67
68
# .env.example - Traefik Configuration Template
# Copy this file to .env and fill in your actual values
# ========================================
# Project Configuration
# ========================================
COMPOSE_PROJECT_NAME=traefik
TIMEZONE=Europe/Berlin
# ========================================
# Traefik Dashboard
# ========================================
# Example: Host(`traefik.example.com`)
HOSTRULE=Host(`traefik.your-domain.com`)
# ========================================
# Let's Encrypt
# ========================================
LETSENCRYPT_EMAIL=your-email@example.com
# ========================================
# Network Configuration
# ========================================
PROXY_NETWORK=traefik_proxy_network
# ========================================
# Dashboard Authentication
# ========================================
DASHBOARD_USER=traefik-admin
# Passwort-Hash generieren mit:
# docker run --rm httpd:alpine htpasswd -nbB traefik-admin "DEIN_PASSWORT"
# WICHTIG: Im .env müssen $ als $$ escaped werden!
# Beispiel Output: traefik-admin:$apr1$xyz...
# In .env eintragen: DASHBOARD_PASSWORD_HASH=$$apr1$$xyz...
DASHBOARD_PASSWORD_HASH=$$apr1$$CHANGE_ME$$CHANGE_ME
# ========================================
# Rate Limiting Configuration
# ========================================
# Average: Durchschnittliche Requests pro Sekunde
RATE_LIMIT_AVERAGE=100
# Burst: Maximale Burst-Größe
RATE_LIMIT_BURST=50
# Period: Zeitraum für Rate Limiting
RATE_LIMIT_PERIOD=1s
# ========================================
# In-Flight Limiting Configuration
# ========================================
# Maximale gleichzeitige Requests pro IP
IN_FLIGHT_LIMIT=100
# ========================================
# Mailcow Integration (Optional)
# ========================================
# Hinweis: Wenn Mailcow verwendet wird, müssen die Mailcow-Domains
# in der Datei configs/traefik-dynamic.yaml angepasst werden.
# Siehe Router: mailcow-acme-challenge
# Standardmäßig sind folgende Domains konfiguriert:
# - autodiscover.clicklocal.de, autoconfig.clicklocal.de
# - autodiscover.familie-saeum.de, autoconfig.familie-saeum.de
# - autodiscover.lichte-kraft.eu, autoconfig.lichte-kraft.eu
# - autodiscover.web-seo-consulting.eu, autoconfig.web-seo-consulting.eu
# - mail.web-seo-consulting.eu
# - autodiscover.wunschschreiner.eu, autoconfig.wunschschreiner.eu