-
-
Notifications
You must be signed in to change notification settings - Fork 221
Closed
Description
When the uriPrefix has a trailing slash, the API server works but the static files become broken.
This breaks:
¶ cat config.toml
[webserver]
uri_prefix = "/tegola/"
[…]
¶ docker-compose restart
Restarting gnis_tegola_1 ... done
¶ curl localhost:8080/tegola/capabilities
{"version":"v0.12.1", …
¶ curl localhost:8080/tegola/
404 page not found
But this works:
¶ cat config.toml
[webserver]
uri_prefix = "/tegola"
[…]
¶ docker-compose restart
Restarting gnis_tegola_1 ... done
¶ curl localhost:8080/tegola/capabilities
{"version":"v0.12.1", …
¶ curl localhost:8080/tegola/
<!DOCTYPE html>…
Metadata
Metadata
Assignees
Labels
No labels