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
When setting BASE_PATH="/" in the Docker Compose configuration for synapse-admin, URLs are incorrectly encoded with %20, causing issues with request routing.
Description
When setting
BASE_PATH="/"
in the Docker Compose configuration forsynapse-admin
, URLs are incorrectly encoded with%20
, causing issues with request routing.Example
Given the following
docker-compose.yml
:Requests through an external proxy (e.g., Nginx) such as:
may result in URLs like:
Suggested Fix
Change BASE_PATH="/" to BASE_PATH=/ in the docker-compose.yml file to avoid encoding issues:
Environment
The text was updated successfully, but these errors were encountered: