Emmanuel Garette
1599acfeb5
Proxy configuration =================== env_proxy.port has a default value with ansible we needs to define a new mapping variable: env_proxy_all Examples of Ops inventory file ============================== 1/ VALID: --- env_proxy: host: proxy.example.net 2/ VALID: --- env_proxy: host: proxy.example.net port: "3129"
22 lines
703 B
YAML
22 lines
703 B
YAML
---
|
||
version: '1.0'
|
||
env_proxy:
|
||
description: HTTP(s) proxy server overview and configuration
|
||
help: |
|
||
A proxy server acts as an intermediary gateway between a client and another
|
||
HTTP(s) server, such as the Internet.
|
||
|
||
It makes service requests on behalf of a local client and allows the client
|
||
to make network connections to network services outside its own network.
|
||
host:
|
||
description: The proxy server’s address
|
||
help: |
|
||
Specifies the hostname of proxy server to enable proxy server access to
|
||
all of your HTTP(s) requests.
|
||
type: domainname
|
||
test:
|
||
- proxy.silique.fr
|
||
port:
|
||
description: The proxy server's port
|
||
type: port
|
||
default: "3128"
|