-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
85 lines (66 loc) · 2.94 KB
/
Copy path.env.example
File metadata and controls
85 lines (66 loc) · 2.94 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# =============================================================================
# TARZAN CONFIGURATION
# =============================================================================
# Copy this file to .env and update the values according to your setup
# =============================================================================
# SERVER CONFIGURATION
# =============================================================================
# Base URL where Tarzan is accessible (used for generating links)
TARZAN_BASE-URL=https://tarzan.meysam.io
# Port for the web server to listen on
TARZAN_PORT=8000
# Redis server port
TARZAN_REDIS_PORT=6379
# =============================================================================
# WEBHOOK AUTHENTICATION
# =============================================================================
# Password for webhook authentication
TARZAN_AUTH_PASSWORD=Secr3t!
# Username for webhook authentication
TARZAN_AUTH_USERNAME=postmarkapp
# =============================================================================
# REDIS CONFIGURATION
# =============================================================================
# Redis database number
TARZAN_REDIS_DB=0
# Redis server hostname
TARZAN_REDIS_HOST=localhost
# Redis authentication password
TARZAN_REDIS_PASSWORD=your_password
# Enable SSL/TLS for Redis connection
TARZAN_REDIS_SSL=false
# =============================================================================
# STORAGE CONFIGURATION
# =============================================================================
# Data storage backend (sqlite or redis)
TARZAN_DATASTORE=sqlite
# File storage backend (filesystem or redis)
TARZAN_FILESTORE=filesystem
# =============================================================================
# DIRECTORY PATHS
# =============================================================================
# Path to the SQLite database file
TARZAN_DIR_DB=tarzan.db
# Path to the storage directory for uploaded files
TARZAN_DIR_STORAGE=storage
# =============================================================================
# ENDPOINTS
# =============================================================================
# RSS endpoint path
TARZAN_ENDPOINTS_RSS=/rss.xml
# =============================================================================
# METRICS
# =============================================================================
# Enable authentication for metrics endpoint
TARZAN_METRICS_AUTH_ENABLED=false
# Password for metrics endpoint authentication
TARZAN_METRICS_AUTH_PASSWORD=your_password
# Username for metrics endpoint authentication
TARZAN_METRICS_AUTH_USERNAME=your_username
# Enable metrics collection
TARZAN_METRICS_ENABLED=true
# =============================================================================
# SECURITY
# =============================================================================
# Accept webhooks from any sender (dangerous in production)
TARZAN_DANGEROUSLY-ACCEPT-ALL-SENDERS=false