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.
This commit is contained in:
Kumi 2024-06-16 10:21:30 +02:00
parent 32e6a5e429
commit 85ccdca97f
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -37,7 +37,7 @@ cd transfer.coffee
npm install 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 ## Configuration
@ -66,7 +66,7 @@ export TURN_SECRET="your-static-auth-secret" # Required if you have a TURN serve
npm start 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 ## Usage