Skip to content

Commit c605e50

Browse files
author
valentinab25
committed
Add nginx details
1 parent 3e2422a commit c605e50

File tree

5 files changed

+19
-1
lines changed

5 files changed

+19
-1
lines changed

docs/install/containers/examples/haproxy-plone-zeo.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ html_meta:
1010

1111
Very simple setup with only one or more backend instances accessing a ZEO server and data being persisted in a Docker volume.
1212

13+
HAProxy is used for load balancing in this example.
14+
1315
## Setup
1416

1517
Create a directory for your project, and inside it create a `docker-compose.yml` file that starts your Plone instance and the ZEO instance with volume mounts for data persistence.
16-
HAProxy is used for load balancing in this example.
1718

1819
```yaml
1920
version: "3"

docs/install/containers/examples/nginx-plone.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ html_meta:
1010

1111
Simple setup with one backend and data being persisted in a Docker volume.
1212

13+
Nginx in this example is used as a [reverse proxy](https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/").
14+
1315

1416
## Setup
1517

@@ -50,6 +52,8 @@ server {
5052
}
5153
```
5254

55+
> `http://plone.localhost/` is the url you will be using to access the website.
56+
> You can either use `localhost`, or add it in your `etc/hosts` file or DNS to point to the docker host IP.
5357
5458
### Service configuration with `docker-compose`
5559

docs/install/containers/examples/nginx-volto-plone-postgresql.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ html_meta:
1010

1111
Very simple setup with only one or more backend instances accessing a Postgres server and data being persisted in a Docker volume.
1212

13+
Nginx in this example is used as a [reverse proxy](https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/").
14+
1315

1416
## Setup
1517

@@ -75,6 +77,9 @@ server {
7577
}
7678
```
7779

80+
> `http://plone.localhost/` is the url you will be using to access the website.
81+
> You can either use `localhost`, or add it in your `etc/hosts` file or DNS to point to the docker host IP.
82+
7883

7984
### Service configuration with `docker-compose`
8085

docs/install/containers/examples/nginx-volto-plone-zeo.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ html_meta:
1010

1111
Very simple setup with only one or more backend instances accessing a ZEO server and data being persisted in a Docker volume.
1212

13+
Nginx in this example is used as a [reverse proxy](https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/").
1314

1415
## Setup
1516

@@ -75,6 +76,9 @@ server {
7576
}
7677
```
7778

79+
> `http://plone.localhost/` is the url you will be using to access the website.
80+
> You can either use `localhost`, or add it in your `etc/hosts` file or DNS to point to the docker host IP.
81+
7882

7983
### Service configuration with `docker-compose`
8084

docs/install/containers/examples/nginx-volto-plone.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ html_meta:
1010

1111
Very simple setup with only one backend and data being persisted in a Docker volume.
1212

13+
Nginx in this example is used as a [reverse proxy](https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/").
1314

1415
## Setup
1516

@@ -75,6 +76,9 @@ server {
7576
}
7677
```
7778

79+
> `http://plone.localhost/` is the url you will be using to access the website.
80+
> You can either use `localhost`, or you will need to add it in your `etc/hosts` file or DNS to point to the docker host IP.
81+
7882

7983
### Service configuration with `docker-compose`
8084

0 commit comments

Comments
 (0)