[tutorial v1.1_080] Proxy custom type

This commit is contained in:
egarette@silique.fr 2026-04-18 21:39:26 +02:00
parent 54e3b4521a
commit a5bc1134b6
2 changed files with 20 additions and 12 deletions

View file

@ -8,16 +8,7 @@ manual:
variable: _.proxy_mode variable: _.proxy_mode
when_not: Manual proxy configuration when_not: Manual proxy configuration
http_proxy: # HTTP Proxy http_proxy:
description: HTTP Proxy
address: type: proxy
description: HTTP address
type: domainname
params:
allow_ip: true
port:
description: HTTP Port
type: port
default: 8080
... ...

17
types/proxy/00-type.yml Normal file
View file

@ -0,0 +1,17 @@
%YAML 1.2
---
version: 1.1
proxy:
address:
description: Proxy address
type: domainname
params:
allow_ip: true
port:
description: Proxy port
type: port
default: 8080
...