-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.json
49 lines (49 loc) · 1.48 KB
/
config.json
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
{
"backup_dir": "/opt/Marzban_Backup/temp",
"backup_interval_time": 60,
"telegram": {
"bot_token": "your-telegram-bot-token",
"chat_id": "your-chat-id"
},
"discord": {
"backup_url": "your-discord-webhook-url"
},
"databases": [
{
"type": "mariadb",
"env_path": "/opt/marzban/.env",
"docker_path": "/opt/marzban/docker-compose.yml",
"container_name": "mariadb",
"url_format":"sqlalchemy",
"external": [
"/var/lib/marzban/certs",
"/var/lib/marzban/templates",
"/var/lib/marzban/xray_config.json"
]
},
{
"type": "sqlite",
"db_name":"test",
"env_path": "/opt/marzban/.env",
"docker_path": "/opt/marzban/docker-compose.yml",
"container_name": "",
"external": [
"/var/lib/marzban/certs",
"/var/lib/marzban/templates",
"/var/lib/marzban/xray_config.json"
]
},
{
"type": "mysql",
"env_path": "/opt/marzban/.env",
"docker_path": "/opt/marzban/docker-compose.yml",
"container_name": "mysql",
"url_format":"gorm",
"external": [
"/var/lib/marzban/certs",
"/var/lib/marzban/templates",
"/var/lib/marzban/xray_config.json"
]
}
]
}