mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-10-29 09:51:26 +01:00
7 lines
334 B
Plaintext
7 lines
334 B
Plaintext
|
|
{% if system_proxy is defined and system_proxy != '' %}
|
||
|
|
systemProp.http.proxyHost={{ system_proxy | urlsplit('hostname') }}
|
||
|
|
systemProp.http.proxyPort={{ system_proxy | urlsplit('port') }}
|
||
|
|
systemProp.https.proxyHost={{ system_proxy | urlsplit('hostname') }}
|
||
|
|
systemProp.https.proxyPort={{ system_proxy | urlsplit('port') }}
|
||
|
|
{% endif %}
|