You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| flag: `--http-address`<br/>toml: `http_address`| string |`[http://]<addr>:<port>` or `unix://<path>` to listen on for HTTP clients. Square brackets are required for ipv6 address, e.g. `http://[::1]:4180`|`"127.0.0.1:4180"`|
222
+
| flag: `--http-address`<br/>toml: `http_address`| string |`[http://]<addr>:<port>` or `unix://<path>`or `fd:<int>` (case insensitive) to listen on for HTTP clients. Square brackets are required for ipv6 address, e.g. `http://[::1]:4180`|`"127.0.0.1:4180"`|
223
223
| flag: `--https-address`<br/>toml: `https_address`| string |`[https://]<addr>:<port>` to listen on for HTTPS clients. Square brackets are required for ipv6 address, e.g. `https://[::1]:443`|`":443"`|
224
224
| flag: `--metrics-address`<br/>toml: `metrics_address`| string | the address prometheus metrics will be scraped from |`""`|
225
225
| flag: `--metrics-secure-address`<br/>toml: `metrics_secure_address`| string | the address prometheus metrics will be scraped from if using HTTPS |`""`|
flagSet.String("metrics-secure-address", "", "the address /metrics will be served on for HTTPS clients (e.g. \":9100\")")
471
471
flagSet.String("metrics-tls-cert-file", "", "path to certificate file for secure metrics server")
472
472
flagSet.String("metrics-tls-key-file", "", "path to private key file for secure metrics server")
473
-
flagSet.String("http-address", "127.0.0.1:4180", "[http://]<addr>:<port> or unix://<path> to listen on for HTTP clients")
473
+
flagSet.String("http-address", "127.0.0.1:4180", "[http://]<addr>:<port> or unix://<path> or fd:<int> (case insensitive) to listen on for HTTP clients")
474
474
flagSet.String("https-address", ":443", "<addr>:<port> to listen on for HTTPS clients")
475
475
flagSet.String("tls-cert-file", "", "path to certificate file")
476
476
flagSet.String("tls-key-file", "", "path to private key file")
0 commit comments