From 85ccdca97f3326f0d4de438039fc2cb2818a2655 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 16 Jun 2024 10:21:30 +0200 Subject: [PATCH] docs: clarify URL and reverse proxy instructions Updated README to specify ports for both application (:8105) and tracker (:8106) when configuring a reverse proxy. Also corrected the URL from localhost:3000 to localhost:8105 to reflect the expected setup. This avoids confusion during production setup and ensures smoother deployment. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ecbcd56..530509e 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ cd transfer.coffee npm install ``` -3. Optional, but recommended for production: Put the application behind a reverse proxy (e.g. Caddy or nginx) and configure SSL. +3. Optional, but recommended for production: Put the application (:8105) and the tracker (:8106) behind a reverse proxy (e.g. Caddy or nginx) and configure SSL. ## Configuration @@ -66,7 +66,7 @@ export TURN_SECRET="your-static-auth-secret" # Required if you have a TURN serve npm start ``` -3. Open your browser and navigate to `http://localhost:3000`. +3. Open your browser and navigate to `http://localhost:8105` (or the URL you have configured in your reverse proxy) ## Usage