ebner commented on issue #2889: URL: https://github.com/apache/jena/issues/2889#issuecomment-2532789592
OK, so I just threw together a `docker-compose.yml` for a small PoC to demonstrate the behavior, when I noticed that the problem was a missing slash in the Apache configuration (there should have been a `/` after fuseki): ``` RewriteRule ^/fuseki(.*)$ http://localhost:3030/$1 [P] ``` This led to the HTML file being served from a URL without trailing slash, which was not considered to be a folder by the browser. The relative paths `./something` resolved to a path one level to high. Changing to a relative path without `./` in the beginning would not have made a difference. Sorry for the noise! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
