From 21621c712b7b25f5db7825ef1d4a63c684e6b35c Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Wed, 24 Jan 2018 21:47:23 +0100 Subject: [PATCH] docs(config): add http proxy configuration --- docs/config.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/config.md b/docs/config.md index cb67a9345..1f73d847e 100644 --- a/docs/config.md +++ b/docs/config.md @@ -144,6 +144,28 @@ https: ca: path/to/server.pem ``` +### Proxy + +Proxies are special-purpose HTTP servers designed to transfer data from remote servers to local clients. + +#### http_proxy and https_proxy + +If you have a proxy in your network you can set a `X-Forwarded-For` header using the following properties. + +```yaml +http_proxy: http://something.local/ +https_proxy: https://something.local/ +``` + +#### no_proxy + +This variable should contain a comma-separated list of domain extensions proxy should not be used for. + +```yaml +http_proxy: http://something.local/ +https_proxy: https://something.local/ +``` + ### Notifications Enable notifications to three party tools is fairly easy via web hooks. For more information about this section read the [notifications page](notifications.md).