From fb5b3ab2c4d0bb137e1b8189e1a47b5df6804fa4 Mon Sep 17 00:00:00 2001 From: Florian Rupp Date: Sun, 7 Apr 2024 00:02:34 +0200 Subject: [PATCH] subnet improvement --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 59239aa..bf11c03 100644 --- a/README.md +++ b/README.md @@ -152,12 +152,12 @@ networks: traefik: external: true ``` -Get the internal IP of your Traefik with `docker inspect traefik`. +Get the internal IP address range of your Traefik network with `docker network inspect traefik`. For example this will give you a subnet like 192.168.173.0/20 Add this to your `/your/nextcloud/root/nextcloud/config/config.php`: ``` 'trusted_proxies' => array ( - 0 => 'INSERT TRAEFIK IP HERE', + 0 => 'INSERT TRAEFIK IP SUBNET HERE for our example 192.168.173.0/20', ), ```