From 95ea694b96165ef6bafeaeea2fb6bf1516472742 Mon Sep 17 00:00:00 2001 From: Maycon Santos Date: Wed, 1 Oct 2025 19:53:19 -0300 Subject: [PATCH] Add browser client support info (#437) --- src/pages/selfhosted/selfhosted-quickstart.mdx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/pages/selfhosted/selfhosted-quickstart.mdx b/src/pages/selfhosted/selfhosted-quickstart.mdx index 3926cfa5..1177c66f 100644 --- a/src/pages/selfhosted/selfhosted-quickstart.mdx +++ b/src/pages/selfhosted/selfhosted-quickstart.mdx @@ -93,6 +93,17 @@ To upgrade NetBird to the latest version, you need to review the [release notes] docker compose up -d --force-recreate management dashboard signal relay ``` +### Support browser clients +If you deployed NetBird before version **0.59.0** and want to use browser clients, you need to update your Signal, Management, Dashboard and Relay services, see [Upgrade](#upgrade), then you need to edit the `Caddyfile` file to enable support for browser clients by adding the following lines to the `Caddyfile`: +``` + reverse_proxy /ws-proxy/management* management:80 + reverse_proxy /ws-proxy/signal* signal:10000 +``` +Then restart the Caddy service to apply the changes: +```bash +docker compose restart caddy +``` + ### Remove To remove the NetBird installation and all related data from your server, run these commands from the folder where you installed NetBird: ```bash