From 8dc19883d6f0c11bd5332c320e64e9e1bcffc0b5 Mon Sep 17 00:00:00 2001 From: Viktor Date: Tue, 25 Apr 2017 21:11:44 +0200 Subject: [PATCH] Environment variables for ssl-default-* options [fixes #219] --- docs/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config.md b/docs/config.md index 63937344..038d29d6 100644 --- a/docs/config.md +++ b/docs/config.md @@ -26,7 +26,7 @@ The following environment variables can be used to configure the *Docker Flow Pr PROXY_INSTANCE_NAME|The name of the proxy instance. Useful if multiple proxies are running inside a cluster.|No|docker-flow| |SERVICE_NAME |The name of the service. It must be the same as the value of the `--name` argument used to create the proxy service. Used only in the *swarm* mode.
Example: my-proxy|No|proxy| |SKIP_ADDRESS_VALIDATION|Whether to skip validating service address before reconfiguring the proxy.
Example: false|No|true| -|SSL_BIND_CIPHERS |Sets the default string describing the list of cipher algorithms ("cipher suite") that are negotiated during the SSL/TLS handshake for all "bind" lines which do not explicitly define theirs. The format of the string is defined in "man 1 ciphers" from OpenSSL man pages, and can be for instance a string such as `AES:ALL:!aNULL:!eNULL:+RC4:@STRENGTH`.|No|ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:RSA+AESGCM:RSA+AES:!aNULL:!MD5:!DSS| +|SSL_BIND_CIPHERS |Sets the default string describing the list of cipher algorithms ("cipher suite") that are negotiated during the SSL/TLS handshake for all "bind" lines which do not explicitly define theirs. The format of the string is defined in "man 1 ciphers" from OpenSSL man pages, and can be for instance a string such as `AES:ALL:!aNULL:!eNULL:+RC4:@STRENGTH`.|No|[Dockerfile](https://github.com/vfarcic/docker-flow-proxy/blob/master/Dockerfile#L28)| |SSL_BIND_OPTIONS |Sets default ssl-options to force on all "bind" lines. |No |no-sslv3| |STATS_USER |Username for the statistics page. If not set, stats will not be available. If both `STATS_USER` and `STATS_PASS` are set to `none`, statistics will be available without authentication.
Example: my-user|No |admin | |STATS_USER_ENV |The name of the environment variable that holds the username for the statistics page.
Example: MY_USER|No|STATS_USER|