From 32bfb9e32f0d7f0cb6e186932530cc6ce73f9d21 Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Wed, 3 Jun 2026 08:59:32 +0200 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 +...