[tutorial v1.1_082] Redefine default value in custom type variable

This commit is contained in:
egarette@silique.fr 2026-04-18 21:47:41 +02:00
parent 07777d9efe
commit b1806b1d7e
2 changed files with 10 additions and 1 deletions

View file

@ -11,4 +11,10 @@ manual:
http_proxy:
description: HTTP Proxy
type: proxy
address:
default: null
port:
default: 8080
...

View file

@ -9,9 +9,12 @@ proxy:
type: domainname
params:
allow_ip: true
default:
variable: __.http_proxy.address
port:
description: Proxy port
type: port
default: 8080
default:
variable: __.http_proxy.port
...