From a4006618e9fe9d1e2be69b54ba628e8f5510cf70 Mon Sep 17 00:00:00 2001 From: RocketQuack <202538874+Rocket-Quack@users.noreply.github.com> Date: Thu, 29 Jan 2026 19:34:58 +0100 Subject: [PATCH] docs: add NGINX_PROXY_HOSTS to example.env --- example.env | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/example.env b/example.env index 05f28a29..85b96ba7 100644 --- a/example.env +++ b/example.env @@ -52,8 +52,14 @@ PROXY_READ_TIMEOUT= # Necessary if the upload limit in the frappe application is increased CLIENT_MAX_BODY_SIZE= +# Only with traefik overrides # Single site: SITES_RULE=Host(`erp.example.com`) # Multiple sites: SITES_RULE=Host(`a.example.com`) || Host(`b.example.com`) # More https://doc.traefik.io/traefik/routing/routers/#rule # About acme https://doc.traefik.io/traefik/https/acme/#domain-definition SITES_RULE=Host(`erp.example.com`) + +# Only with nginxproxy overrides +# Single site: NGINX_PROXY_HOSTS=erp.example.com +# Multiple sites: NGINX_PROXY_HOSTS=erp.example.com,www.erp.example.com +NGINX_PROXY_HOSTS=erp.example.com