remove /web prefix from the frontend_url variable

This commit is contained in:
maxDorninger
2025-11-29 15:54:01 +01:00
parent 9b0fac3a8b
commit bb5c61ac79
5 changed files with 10 additions and 6 deletions

View File

@@ -8,7 +8,11 @@ centralized in this TOML file instead of environment variables.
- `frontend_url`
The URL the frontend will be accessed from. This is a required field and must include the trailing slash. The default
path is `http://localhost:8000/web/`.
path is `http://localhost:8000`.
E.g. if you are accessing MediaManager at `http://example.com/media` where `/media` is the base path, set this to: `http://example.com/media`.
If you are accessing MediaManager at the root of a domain, e.g. `https://mediamanager.example.com`, set this to `https://mediamanager.example.com`.
Make sure to change this to the URL you will use to access the application in your browser.