Skip to content

Commit

Permalink
Fixing address undefined: #94
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Feb 11, 2025
1 parent a986eb5 commit 28b7e58
Show file tree
Hide file tree
Showing 3 changed files with 249 additions and 222 deletions.
54 changes: 42 additions & 12 deletions admin/jsonConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,55 +10,67 @@
"type": "ip",
"listenOnAllPorts": true,
"label": "IP",
"xs": 12,
"sm": 12,
"md": 8,
"lg": 5
"lg": 5,
"xl": 4
},
"port": {
"type": "number",
"min": 1,
"max": 65565,
"label": "Port",
"xs": 12,
"sm": 12,
"md": 4,
"lg": 3
"lg": 3,
"xl": 2
},
"secure": {
"newLine": true,
"type": "checkbox",
"label": "Secure(HTTPS)",
"xs": 12,
"sm": 12,
"md": 6,
"lg": 2
"lg": 2,
"xl": 2
},
"certPublic": {
"type": "certificate",
"hidden": "!data.secure",
"certType": "public",
"validator": "!data.secure || data.certPublic",
"label": "Public certificate",
"xs": 12,
"sm": 12,
"md": 6,
"lg": 2
"lg": 2,
"xl": 2
},
"certPrivate": {
"hidden": "!data.secure",
"type": "certificate",
"certType": "private",
"validator": "!data.secure || data.certPrivate",
"label": "Private certificate",
"xs": 12,
"sm": 12,
"md": 6,
"lg": 2
"lg": 2,
"xl": 2
},
"certChained": {
"hidden": "!data.secure",
"type": "certificate",
"certType": "chained",
"label": "Chained certificate",
"xs": 12,
"sm": 12,
"md": 6,
"lg": 2
"lg": 2,
"xl": 2
},
"auth": {
"newLine": true,
Expand All @@ -73,35 +85,43 @@
"alsoDependsOn": ["secure"]
},
"label": "Authentication",
"xs": 12,
"sm": 12,
"md": 6,
"lg": 2
"lg": 2,
"xl": 2
},
"defaultUser": {
"hidden": "!!data.auth",
"type": "user",
"label": "Run as",
"xs": 12,
"sm": 12,
"md": 6,
"lg": 2
"lg": 2,
"xl": 2
},
"ttl": {
"hidden": "!data.auth",
"type": "number",
"label": "Login timeout",
"help": "sec",
"xs": 12,
"sm": 12,
"md": 6,
"lg": 2
"lg": 2,
"xl": 2
},
"language": {
"newLine": true,
"label": "Language for only this instance",
"system": true,
"type": "language",
"xs": 12,
"sm": 12,
"md": 4,
"lg": 2
"lg": 2,
"xl": 2
}
}
},
Expand All @@ -118,11 +138,21 @@
"style": {
"width": 200,
"height": 59
}
},
"xs": 12,
"sm": 12,
"md": 12,
"lg": 12,
"xl": 12
},
"_staticText": {
"type": "staticText",
"text": "ra_Use iobroker.acme adapter for letsencrypt certificates"
"text": "ra_Use iobroker.acme adapter for letsencrypt certificates",
"xs": 12,
"sm": 12,
"md": 12,
"lg": 12,
"xl": 12
}
}
}
Expand Down
Loading

0 comments on commit 28b7e58

Please sign in to comment.