forked from a-stjohn/iocage-plugin-zoneminder
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsettings.json
58 lines (58 loc) · 2.11 KB
/
settings.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
{
"servicerestart":"service nginx restart",
"serviceget": "/usr/local/bin/pluginget.sh",
"serviceset": "/usr/local/bin/pluginset.sh",
"options": {
"httpport": {
"type": "int",
"name": "HTTP Port",
"description": "Port for incoming http requests, if used.",
"range": "1-65535",
"default": "80",
"requirerestart": true
},
"httpsport": {
"type": "int",
"name": "HTTPS Port",
"description": "Port for incoming https requests, if used. Make sure SSL options have been configured.",
"range": "1-65535",
"default": "443",
"requirerestart": true
},
"sslcert": {
"type": "string",
"name": "Path to SSL/TLS certificate",
"description": "Defaults to self-signed certificate. Must be a single, full-chain file. Consider copying a real certificate from the host into the jail and keeping it updated regularly.",
"requirerestart": true,
"default": "/usr/local/etc/ssl/cert.pem"
},
"sslkey": {
"type": "string",
"name": "Path to SSL/TLS key",
"description": "Defaults to autogenerated at install time. Consider copying a key matching a real certificate from the host into the jail.",
"requirerestart": true,
"default": "/usr/local/etc/ssl/key.pem"
},
"adminprotocol": {
"type": "combo",
"name": "Admin UI Protocol",
"description": "Protocol for accessing admin UI. Defaults to HTTPS using self-signed certificate or if configured in the other settings.",
"requirerestart": false,
"default": "https",
"options": {
"https": "https",
"http": "http"
},
"readonly": true
},
"adminport": {
"type": "int",
"name": "Admin UI Port",
"description": "Default port for accessing admin UI. Defaults to 443 if SSSL configured, or determined from the other settings.",
"requirerestart": false,
"default": "443",
"range": "1-65535",
"readonly": true
}
}
}