[tutorial v1.1_080] HTTP Proxy with "proxy" type

This commit is contained in:
egarette@silique.fr 2026-03-12 07:44:52 +01:00
parent 7bb3783935
commit 3c928a9f01
2 changed files with 22 additions and 12 deletions

View file

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

19
types/proxy/00_type.yml Normal file
View file

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