From e81a95fa70bbd05975e9fe807d688aef9e200f4e Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Thu, 12 Mar 2026 06:27:56 +0100 Subject: [PATCH] [tutorial v1.1_080] HTTP Proxy with "proxy" type --- firefox/10-manual.yml | 15 +++------------ types/proxy/00_type.yml | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+), 12 deletions(-) create mode 100644 types/proxy/00_type.yml diff --git a/firefox/10-manual.yml b/firefox/10-manual.yml index 047ff8a3..1b3761b4 100644 --- a/firefox/10-manual.yml +++ b/firefox/10-manual.yml @@ -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 ... diff --git a/types/proxy/00_type.yml b/types/proxy/00_type.yml new file mode 100644 index 00000000..e786ef10 --- /dev/null +++ b/types/proxy/00_type.yml @@ -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 +...