HTTP-Proxy Configuration¶
The CEP allows for the configuration of an HTTP proxy. This configuration enforces and overrides the environment-related proxy settings for all API requests related to AA.
The CEP and the Docker daemon will establish HTTPS connections to registry.ceplabs.com and license.ceplabs.com. It may be necessary to add additional configurations to your Proxy/Firewall to allow Docker and CEP to connect to these hosts.
Configuration¶
HTTP_PROXY¶
An HTTP proxy server that is used for all API-related requests. It is highly recommended to configure HTTP_PROXY and HTTPS_PROXY.
environment:
- HTTP_PROXY=http://user:password@server:8080
environment:
- HTTP_PROXY=
HTTPS_PROXY¶
An HTTPS proxy server that is used for all API-related requests. It is highly recommended to configure HTTPS_PROXY and HTTP_PROXY.
environment:
- HTTPS_PROXY=https://user:password@server:8080
environment:
- HTTPS_PROXY=
NO_PROXY¶
Comma- or space-separated list of machine or domain names, with optional :port part. If no :port part is present, it applies to all ports on that domain.
environment:
- NO_PROXY=localhost,host.example.com
environment:
- NO_PROXY=localhost