-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathconfig.json
59 lines (59 loc) · 1.16 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
50
51
52
53
54
55
56
57
58
59
{
"name": "Hass n8n",
"version": "1.0.60",
"slug": "hass-n8n",
"description": "Self host your n8n instance",
"url": "https://github.com/Rbillon59/hass-n8n",
"arch": [
"armhf",
"armv7",
"aarch64",
"amd64",
"i386"
],
"startup": "application",
"boot": "auto",
"icon": "ico.png",
"logo": "ico.png",
"webui": "http://[HOST]:[PORT:5678]/",
"map": [
"ssl:ro",
"backup:rw",
"share:rw",
"media:rw",
"config:ro"
],
"apparmor": true,
"ports": {
"5678/tcp": 5678
},
"ports_description": {
"5678/tcp": "n8n Web interface"
},
"options": {
"auth": false,
"auth_username": "",
"auth_password": "",
"timezone": "Europe/Berlin",
"protocol": "http",
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"env_vars_list": [
"WEBHOOK_URL: http://localhost:5678"
],
"cmd_line_args": ""
},
"schema": {
"auth": "bool",
"auth_username": "str?",
"auth_password": "str?",
"timezone": "str",
"protocol": "str",
"certfile": "str",
"keyfile": "str",
"env_vars_list": [
"match(^[A-Z_0-9]+: .*$)"
],
"cmd_line_args": "str?"
}
}