I’m building a Spring boot + Angular application (using Jhipster, deployed in a docker container using JIB but that should not be important to this issue).
Everything works perfectly in development, but in production, URLs with a “.” are not working when directly accessing them.
let’s say we have this URL defined : /release/:product/:version
-> /release/superapp/1.1.0 is giving a 403 forbidden error if typed directly in the web browser url.
But if Im accessing this URL by using clicks and buttons, it works. So it seems that the router works fine, but spring boot is not redirecting url with dots to the index.html… and only in production.
I’ve seen a lot of similar error but with development webservers… and they should all be fixed now. So I don’t really know if there’s a configuration I can change to make it work…