You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,8 +25,11 @@ The logic for the download speed is extremely inaccurate.
25
25
SONARR_API_KEY=your-sonarr-api-key
26
26
RADARR_URL=http://localhost:7878
27
27
RADARR_API_KEY=your-radarr-api-key
28
+
BASE_PATH=
28
29
```
29
30
31
+
**Optional**: Set `BASE_PATH` to host monitarr on a subfolder (e.g., `BASE_PATH=/monitarr` to access at `http://localhost:3000/monitarr`). This is useful for reverse proxy setups where you want to host monitarr at `yourdomain.com/monitarr` instead of a subdomain.
32
+
30
33
4. Run `yarn build`
31
34
5. Run `yarn start`
32
35
6. Visit `http://localhost:3000` in your browser
@@ -47,6 +50,7 @@ services:
47
50
- SONARR_API_KEY=YOUR_SONARR_API_KEY
48
51
- RADARR_URL=http://radarr:7878
49
52
- RADARR_API_KEY=YOUR_RADARR_API_KEY
53
+
- BASE_PATH=/monitarr # Optional: for subfolder hosting
0 commit comments