Skip to content

Commit c976643

Browse files
esmerelcnorris-cs
andauthored
Apply suggestions from code review
Co-authored-by: Craig Norris <[email protected]> Signed-off-by: esmerel <[email protected]>
1 parent 24890db commit c976643

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

administration/http-proxy.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ HTTP_PROXY='http://proxy.example.com:8080'
2727
```
2828

2929
The `HTTP_PROXY` environment variable is a [standard
30-
way](https://docs.docker.com/network/proxy/#use-environment-variables) for setting a
30+
method](https://docs.docker.com/network/proxy/#use-environment-variables) for setting a
3131
HTTP proxy in a containerized environment, and it's also natively supported by any
3232
application written in Go. Fluent Bit implements the same convention. The
3333
`http_proxy` environment variable is also supported. When both the `HTTP_PROXY` and
@@ -54,14 +54,14 @@ and `no_proxy` environment variables are provided, `NO_PROXY` takes precedence.
5454
The format for the `no_proxy` environment variable is a comma-separated list of
5555
host names or IP addresses.
5656

57-
A domain name matches itself and all its subdomains (for example:`example.com` matches
58-
`example.com` and `test.example.com`):
57+
A domain name matches itself and all of its subdomains (for example,`example.com`
58+
matches both `example.com` and `test.example.com`):
5959

6060
```text
6161
NO_PROXY='foo.com,127.0.0.1,localhost'
6262
```
6363

64-
A domain with a leading dot (`.`) only matches its subdomains (for example:
64+
A domain with a leading dot (`.`) matches only its subdomains (for example,
6565
`.example.com` matches `test.example.com` but not `example.com`):
6666

6767
```text

0 commit comments

Comments
 (0)