From e30b0f878b8a63bcbae57b588fdf01a15d4d32fb Mon Sep 17 00:00:00 2001 From: Simon L Date: Mon, 1 May 2023 16:28:18 +0200 Subject: [PATCH] adjust the docs a bit Signed-off-by: Simon L Signed-off-by: JL102 --- reverse-proxy.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/reverse-proxy.md b/reverse-proxy.md index 7a6f206c..512b4cba 100644 --- a/reverse-proxy.md +++ b/reverse-proxy.md @@ -358,6 +358,8 @@ Of course you need to modify `` to the domain on which you want click here to expand +**Disclaimer:** It might be possible that the config below is not working 100% correctly, yet. Improvements to it are very welcome! + For Node.js, we will use the npm package `http-proxy`. WebSockets must be handled separately. This example only uses `http`, but if your Express server already uses a `https` server, then follow the same instructions for `https`. @@ -422,8 +424,7 @@ myNextcloudApp.use((req, res) => { proxy.web(req, res, {}, onProxyError); }); -vhost.use(vhostFunc('nextcloud.example.com', myNextcloudApp)); -vhost.use(vhostFunc('www.example.com', myOtherApp)); +vhost.use(vhostFunc('', myNextcloudApp)); const httpServer = http.createServer(app); httpServer.listen('80'); @@ -433,6 +434,10 @@ httpServer.on('upgrade', (req, socket, head) => { proxy.ws(req, socket, head, {}, onProxyError); }); ``` + +Of course you need to modify `` to the domain on which you want to run Nextcloud. Also make sure to adjust the port 11000 to match the chosen `APACHE_PORT`. +**Please note:** The above configuration will only work if your reverse proxy is running directly on the host that is running the docker daemon. If the reverse proxy is running in a docker container, you can use the `--network host` option (or `network_mode: host` for docker-compose) when starting the reverse proxy container in order to connect the reverse proxy container to the host network. ***If that is not an option or not possible for you (like e.g. on Windows or if the reverse proxy is running on a different host), you can alternatively instead of `localhost` use the private ip-address of the host that is running the docker daemon. If you are not sure how to retrieve that, you can run: `ip a | grep "scope global" | head -1 | awk '{print $2}' | sed 's|/.*||'`. If the command returns a public ip-address, use `ip a | grep "scope global" | grep docker0 | awk '{print $2}' | sed 's|/.*||'` instead (the commands only work on Linux)*** + ### Synology Reverse Proxy