-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
56 lines (47 loc) · 1.38 KB
/
Copy path.env.example
File metadata and controls
56 lines (47 loc) · 1.38 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
# Beispiel ENV-Konfiguration entsprechend env.example.yaml
# Diese Struktur ist konsistent mit der neuen flachen YAML-Struktur
# Log-Level Konfiguration
LOG_LEVEL=INFO
# Input-Verzeichnis
INPUT=./input
# Output-Ziel 1: Filesystem
OUTPUT_1_PATH=./output1
OUTPUT_1_TYPE=filesystem
# Output-Ziel 2: Filesystem
OUTPUT_2_PATH=./output2
OUTPUT_2_TYPE=filesystem
# Output-Ziel 3: S3 (MinIO 1)
OUTPUT_3_PATH=s3://my-bucket/output3
OUTPUT_3_TYPE=s3
OUTPUT_3_ENDPOINT=minio1:9000
OUTPUT_3_ACCESS_KEY=minioadmin
OUTPUT_3_SECRET_KEY=minioadmin
OUTPUT_3_SSL=false
OUTPUT_3_REGION=eu-central-1
# Output-Ziel 4: S3 (MinIO 2)
OUTPUT_4_PATH=s3://my-bucket/output4
OUTPUT_4_TYPE=s3
OUTPUT_4_ENDPOINT=minio2:9000
OUTPUT_4_ACCESS_KEY=minioadmin
OUTPUT_4_SECRET_KEY=minioadmin
OUTPUT_4_SSL=false
OUTPUT_4_REGION=eu-central-1
# Output-Ziel 5: SFTP
OUTPUT_5_PATH=sftp://my-server1/output5
OUTPUT_5_TYPE=sftp
OUTPUT_5_HOST=your-ftp-host
OUTPUT_5_USERNAME=your-username
OUTPUT_5_PASSWORD=your-password
# Output-Ziel 6: FTP
OUTPUT_6_PATH=ftp://my-server2/output6
OUTPUT_6_TYPE=ftp
OUTPUT_6_HOST=your-ftp-host
OUTPUT_6_USERNAME=your-username
OUTPUT_6_PASSWORD=your-password
# File Stability Konfiguration
# Maximum Anzahl Wiederholungen (Default: 30)
FILE_STABILITY_MAX_RETRIES=30
# Prüf-Intervall in Sekunden (Default: 1)
FILE_STABILITY_CHECK_INTERVAL=1
# Stabilität-Prüfung in Sekunden (Default: 1)
FILE_STABILITY_PERIOD=1