From 59848a12bd136858e679fc66a9555fa637ee3ab2 Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Mon, 9 Mar 2026 09:12:36 +0100 Subject: [PATCH] [tutorial v1.1_080] HTTP Proxy with "proxy" type --- firefox/10-manual.yml | 15 +++------------ types/proxy/00_type.yml | 17 +++++++++++++++++ 2 files changed, 20 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..d5db5867 --- /dev/null +++ b/types/proxy/00_type.yml @@ -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 +...