chore(gandi): update config
This commit is contained in:
parent
90c1879bbc
commit
2aeba1eb23
|
@ -3,6 +3,7 @@
|
||||||
"name": "gandi-livedns",
|
"name": "gandi-livedns",
|
||||||
"available": true,
|
"available": true,
|
||||||
"exposable": false,
|
"exposable": false,
|
||||||
|
"no_gui": true,
|
||||||
"id": "gandi-livedns",
|
"id": "gandi-livedns",
|
||||||
"port": 8134,
|
"port": 8134,
|
||||||
"tipi_version": 1,
|
"tipi_version": 1,
|
||||||
|
@ -23,49 +24,59 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"label": "Record list (DNS records separated by ';'",
|
"label": "Record list",
|
||||||
|
"hint": "DNS records separated by ;",
|
||||||
|
"placeholder": "blog;www;@",
|
||||||
"required": true,
|
"required": true,
|
||||||
"env_variable": "GANDI_LIVEDNS_RECORD_LIST"
|
"env_variable": "GANDI_LIVEDNS_RECORD_LIST"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"label": "Domain (your Gandi domain name)",
|
"label": "Domain",
|
||||||
|
"hint": "Your Gandi domain name",
|
||||||
|
"placeholder": "example.com",
|
||||||
"required": true,
|
"required": true,
|
||||||
"env_variable": "GANDI_LIVEDNS_DOMAIN"
|
"env_variable": "GANDI_LIVEDNS_DOMAIN"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "number",
|
"type": "number",
|
||||||
"label": "Refresh interval in seconds (default 600)",
|
"label": "Refresh interval in seconds",
|
||||||
|
"hint": "Leave empty for default 600",
|
||||||
"required": false,
|
"required": false,
|
||||||
"env_variable": "GANDI_LIVEDNS_REFRESH_INTERVAL"
|
"env_variable": "GANDI_LIVEDNS_REFRESH_INTERVAL"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "number",
|
"type": "number",
|
||||||
"label": "TTL in seconds (default 300)",
|
"label": "TTL in seconds",
|
||||||
|
"hint": "Leave empty for default 300",
|
||||||
"required": false,
|
"required": false,
|
||||||
"env_variable": "GANDI_LIVEDNS_TTL"
|
"env_variable": "GANDI_LIVEDNS_TTL"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"label": "Update A record (default yes)",
|
"label": "Update A record (yes/no)",
|
||||||
|
"hint": "Leave empty for default yes",
|
||||||
"required": false,
|
"required": false,
|
||||||
"env_variable": "GANDI_LIVEDNS_SET_IPV4"
|
"env_variable": "GANDI_LIVEDNS_SET_IPV4"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"label": "Update AAAA record (default no)",
|
"label": "Update AAAA record (yes/no)",
|
||||||
|
"hint": "Leave empty for default no",
|
||||||
"required": false,
|
"required": false,
|
||||||
"env_variable": "GANDI_LIVEDNS_SET_IPV6"
|
"env_variable": "GANDI_LIVEDNS_SET_IPV6"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"label": "Force the IPv4 address to be used in DNS A records",
|
"label": "Force the IPv4 address to be used in DNS A records",
|
||||||
|
"hint": "Leave empty for default yes",
|
||||||
"required": false,
|
"required": false,
|
||||||
"env_variable": "GANDI_LIVEDNS_FORCE_IPV4"
|
"env_variable": "GANDI_LIVEDNS_FORCE_IPV4"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"label": "Force the IPv6 address to be used in DNS A records",
|
"label": "Force the IPv6 address to be used in DNS A records",
|
||||||
|
"hint": "Leave empty for default no",
|
||||||
"required": false,
|
"required": false,
|
||||||
"env_variable": "GANDI_LIVEDNS_FORCE_IPV6"
|
"env_variable": "GANDI_LIVEDNS_FORCE_IPV6"
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,8 +4,6 @@ services:
|
||||||
image: jbbodart/gandi-livedns:latest
|
image: jbbodart/gandi-livedns:latest
|
||||||
container_name: gandi-livedns
|
container_name: gandi-livedns
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
|
||||||
- ${APP_PORT}:80
|
|
||||||
environment:
|
environment:
|
||||||
APIKEY: ${GANDI_LIVEDNS_APIKEY}
|
APIKEY: ${GANDI_LIVEDNS_APIKEY}
|
||||||
RECORD_LIST: ${GANDI_LIVEDNS_RECORD_LIST}
|
RECORD_LIST: ${GANDI_LIVEDNS_RECORD_LIST}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user