Skip to content

Commit 72ad7c5

Browse files
ericofstevepiercy
andauthored
Apply suggestions from code review
Co-authored-by: Steve Piercy <[email protected]>
1 parent 18cfe38 commit 72ad7c5

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

docs/glossary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,8 +384,8 @@ HAProxy
384384
nginx
385385
[nginx](https://docs.nginx.com/nginx/) (pronounced "engine x") is an HTTP and reverse proxy server, a mail proxy server, and a generic TCP/UDP proxy server, originally written by Igor Sysoev.
386386
387-
traefik
388-
[traefik](https://traefik.io/) is an open-source reverse proxy and load balancer, suitable for containerized architectures.
387+
Traefik Proxy
388+
[Traefik Proxy](https://traefik.io/traefik/) is an open-source reverse proxy and load balancer, suitable for containerized architectures.
389389
390390
Volto
391391
[Volto](https://github.com/plone/volto) is a React-based frontend for the Plone CMS.

docs/install/containers/examples/traefik-volto-plone-varnish.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ myst:
33
html_meta:
44
"description": "Very simple Plone 6 setup with only one backend and data being persisted in a Docker volume."
55
"property=og:description": "Very simple Plone 6 setup with only one backend and data being persisted in a Docker volume."
6-
"property=og:title": "traefik, Frontend, Backend, Varnish container example"
7-
"keywords": "Plone 6, Container, Docker, traefik, Frontend, Backend, Varnish"
6+
"property=og:title": "Traefik Proxy, Frontend, Backend, Varnish container example"
7+
"keywords": "Plone 6, Container, Docker, Traefik Proxy, Frontend, Backend, Varnish"
88
---
99

10-
# traefik, Frontend, Backend, Varnish container example
10+
# Traefik Proxy, Frontend, Backend, Varnish container example
1111

1212
This example is a very simple setup with one backend and data being persisted in a Docker volume.
1313

14-
{term}`traefik` in this example is used as a reverse proxy.
14+
{term}`Traefik Proxy` in this example is used as a reverse proxy.
1515

1616
{term}`Varnish` is used for caching.
1717

1818
A purger component is also used. This solves the problem of invalidating the cache in multiple Varnish servers, which could be desirable in containerized deployment.
1919

20-
## Setup
20+
## Create a project space
2121

2222
Create an empty project directory named `traefik-volto-plone-varnish`.
2323

@@ -32,15 +32,15 @@ cd traefik-volto-plone-varnish
3232
```
3333

3434

35-
### Varnish configuration
35+
## Varnish configuration
3636

3737
Create an empty directory named `etc`.
3838

3939
```shell
4040
mkdir etc
4141
```
4242

43-
Add there a `varnish.vcl` that will be used by the varnish image:
43+
Add there a file {file}`varnish.vcl` that will be used by the Varnish image:
4444

4545
```vcl
4646
vcl 4.0;
@@ -318,9 +318,9 @@ sub vcl_deliver {
318318
You can either use `localhost`, or add it in your `/etc/hosts` file or DNS to point to the Docker host IP.
319319
```
320320

321-
### Service configuration with Docker Compose
321+
## Service configuration with Docker Compose
322322

323-
Now let's create a `docker-compose.yml` file:
323+
Now let's create a {file}`docker-compose.yml` file:
324324

325325
```yaml
326326
version: "3"

0 commit comments

Comments
 (0)