Skip to content

Commit c79c8c5

Browse files
authored
[skip ci] Merge pull request #657 from noahbliss/patch-1
s/proxyed/proxied/g
2 parents e8facb6 + 4d8eabb commit c79c8c5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
**letsencrypt-nginx-proxy-companion** is a lightweight companion container for [**nginx-proxy**](https://github.com/jwilder/nginx-proxy).
88

9-
It handles the automated creation, renewal and use of Let's Encrypt certificates for proxyed Docker containers.
9+
It handles the automated creation, renewal and use of Let's Encrypt certificates for proxied Docker containers.
1010

1111
Please note that **letsencrypt-nginx-proxy-companion** no longer supports ACME v1 endpoints. The last tagged version that supports ACME v1 is [v1.11](https://github.com/JrCs/docker-letsencrypt-nginx-proxy-companion/releases/tag/v1.11.2)
1212

@@ -73,25 +73,25 @@ The host docker socket has to be bound inside this container too, this time to `
7373

7474
Albeit **optional**, it is **recommended** to provide a valid default email address through the `DEFAULT_EMAIL` environment variable, so that Let's Encrypt can warn you about expiring certificates and allow you to recover your account.
7575

76-
### Step 3 - proxyed container(s)
76+
### Step 3 - proxied container(s)
7777

78-
Once both **nginx-proxy** and **letsencrypt-nginx-proxy-companion** containers are up and running, start any container you want proxyed with environment variables `VIRTUAL_HOST` and `LETSENCRYPT_HOST` both set to the domain(s) your proxyed container is going to use.
78+
Once both **nginx-proxy** and **letsencrypt-nginx-proxy-companion** containers are up and running, start any container you want proxied with environment variables `VIRTUAL_HOST` and `LETSENCRYPT_HOST` both set to the domain(s) your proxied container is going to use.
7979

8080
[`VIRTUAL_HOST`](https://github.com/jwilder/nginx-proxy#usage) control proxying by **nginx-proxy** and `LETSENCRYPT_HOST` control certificate creation and SSL enabling by **letsencrypt-nginx-proxy-companion**.
8181

8282
Certificates will only be issued for containers that have both `VIRTUAL_HOST` and `LETSENCRYPT_HOST` variables set to domain(s) that correctly resolve to the host, provided the host is publicly reachable.
8383

8484
```shell
8585
$ docker run --detach \
86-
--name your-proxyed-app \
86+
--name your-proxied-app \
8787
--env "VIRTUAL_HOST=subdomain.yourdomain.tld" \
8888
--env "LETSENCRYPT_HOST=subdomain.yourdomain.tld" \
8989
nginx
9090
```
9191

9292
The containers being proxied must expose the port to be proxied, either by using the `EXPOSE` directive in their Dockerfile or by using the `--expose` flag to `docker run` or `docker create`.
9393

94-
If the proxyed container listen on and expose another port than the default `80`, you can force **nginx-proxy** to use this port with the [`VIRTUAL_PORT`](https://github.com/jwilder/nginx-proxy#multiple-ports) environment variable.
94+
If the proxied container listen on and expose another port than the default `80`, you can force **nginx-proxy** to use this port with the [`VIRTUAL_PORT`](https://github.com/jwilder/nginx-proxy#multiple-ports) environment variable.
9595

9696
Example using [Grafana](https://hub.docker.com/r/grafana/grafana/) (expose and listen on port 3000):
9797

@@ -105,7 +105,7 @@ $ docker run --detach \
105105
grafana/grafana
106106
```
107107

108-
Repeat [Step 3](#step-3---proxyed-containers) for any other container you want to proxy.
108+
Repeat [Step 3](#step-3---proxied-containers) for any other container you want to proxy.
109109

110110
## Additional documentation
111111

0 commit comments

Comments
 (0)