Browse Source

Update RealIps Description (#1980)

Describe the syntax of the real_ips configuration key with an example, to prevent type errors in the `setup` container when parsing `config.yml`
pull/1984/head
Jordan Cooks 4 years ago committed by GitHub
parent
commit
43be1d3647
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      util/Setup/Configuration.cs

4
util/Setup/Configuration.cs

@ -97,7 +97,9 @@ namespace Bit.Setup @@ -97,7 +97,9 @@ namespace Bit.Setup
[Description("Defines \"real\" IPs in nginx.conf. Useful for defining proxy servers that forward the \n" +
"client IP address.\n" +
"Learn more: https://nginx.org/en/docs/http/ngx_http_realip_module.html")]
"Learn more: https://nginx.org/en/docs/http/ngx_http_realip_module.html\n\n" +
"Defined as a dictionary, e.g.:\n" +
"real_ips: ['10.10.0.0/24', '172.16.0.0/16']")]
public List<string> RealIps { get; set; }
[Description("Enable Key Connector (https://bitwarden.com/help/article/deploy-key-connector)")]

Loading…
Cancel
Save