Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ If you do not already have a TLS endpoint on your network, you can set one up as
```yml
version: "3.3"
services:
nginx:
image: nginx:latest
ports:
- 3333:443
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./certs:/certs:ro
nginx:
image: nginx:latest
ports:
- 3333:443
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./certs:/certs:ro
```

If needed, replace `./nginx.conf` and `./certs` with the locations of your nginx configuration file and certificate.
Expand Down