From 5b8a3d09393fba1b7fa1a95f3913f2e7d866903e Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Sun, 3 May 2026 18:00:49 +0200 Subject: [PATCH] [tutorial v1.1_081] HTTPS and SOCKS Proxy with "proxy" type --- firefox/20-manual.yml | 38 +++++++------------------------------- 1 file changed, 7 insertions(+), 31 deletions(-) diff --git a/firefox/20-manual.yml b/firefox/20-manual.yml index e73c1863..e52459e9 100644 --- a/firefox/20-manual.yml +++ b/firefox/20-manual.yml @@ -6,37 +6,13 @@ manual: use_for_https: true # Also use this proxy for HTTPS - '{{ identifier }}_proxy': - description: '{{ identifier }} Proxy' + https_proxy: + description: HTTPS Proxy + type: proxy hidden: - jinja: |- - {{ my_identifier == 'HTTPS' and _.use_for_https }} - return_type: boolean - description: in HTTPS case if "_.use_for_https" is set to "true" - params: - my_identifier: - type: identifier - dynamic: - - HTTPS - - SOCKS + variable: _.use_for_https - address: - description: '{{ identifier }} address' - default: - variable: __.http_proxy.address - - port: - description: '{{ identifier }} port' - default: - variable: __.http_proxy.port - - version: - description: SOCKS host version used by proxy - choices: - - v4 - - v5 - default: v5 - disabled: - type: identifier - when: HTTPS + socks_proxy: + description: SOCKS Proxy + type: proxy ...