From a7244bdb681f226c1e2c8e34419183380f547502 Mon Sep 17 00:00:00 2001 From: stratself Date: Mon, 20 Apr 2026 18:15:39 +0000 Subject: [PATCH] docs(docker): Detailed port exposure docs for other reverse proxies --- docs/deploying/docker.mdx | 2 +- docs/public/deploying/docker-compose.yml | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/deploying/docker.mdx b/docs/deploying/docker.mdx index d1eb698c4..f90d8f5c0 100644 --- a/docs/deploying/docker.mdx +++ b/docs/deploying/docker.mdx @@ -148,7 +148,7 @@ Consult the [**DNS tuning guide (recommended)**](../advanced/dns.mdx) for full s -You will then need to point your reverse proxy towards Continuwuity at `127.0.0.1:8008`. See the [Other reverse proxies](generic.mdx#setting-up-the-reverse-proxy) section of the Generic page for further routing details. +See the [Other reverse proxies](generic.mdx#setting-up-the-reverse-proxy) section of the Generic page for further routing details. ### Starting Your Server diff --git a/docs/public/deploying/docker-compose.yml b/docs/public/deploying/docker-compose.yml index b00c83343..a9d4491e0 100644 --- a/docs/public/deploying/docker-compose.yml +++ b/docs/public/deploying/docker-compose.yml @@ -6,7 +6,18 @@ services: restart: unless-stopped command: /sbin/conduwuit ports: + + # If your reverse proxy is on the host, use this + # and configure it to connect to `127.0.0.1:8008` - 127.0.0.1:8008:8008 + + # If your reverse proxy is on another machine, use this + # and configure it to connect to :8008 + # - 8008:8008 + + # If your reverse proxy is a docker container on the same network, + # comment out the entire `ports` section, and configure it to connect to `continuwuity:8008` + volumes: - db:/var/lib/continuwuity - ./continuwuity-resolv.conf:/etc/resolv.conf # use custom resolvers rather than Docker's