[tutorial v1.1_081] HTTP Proxy with "proxy" type with calculated default value

This commit is contained in:
egarette@silique.fr 2026-04-17 17:53:02 +02:00
parent 57b616ee43
commit 2118f91cbb
2 changed files with 10 additions and 0 deletions

View file

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

View file

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