[tutorial v1.1_081] HTTPS and SOCKS Proxy

This commit is contained in:
egarette@silique.fr 2026-03-12 07:39:03 +01:00
parent 4783dcaa52
commit 9339d50ee9

View file

@ -6,29 +6,25 @@ 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
mandatory: true
port:
description: '{{ identifier }} port'
default:
variable: __.http_proxy.port
mandatory: true
socks_proxy:
description: SOCKS Proxy
type: proxy
version:
description: SOCKS host version used by proxy
@ -36,7 +32,4 @@ manual:
- v4
- v5
default: v5
disabled:
type: identifier
when: HTTPS
...