In a Spring Boot application, I can modify the context path using the property server.servlet.context-path
in application.properties
.
Since ThingsBoard uses Spring, I expect a similar customization to be possible.
I want a dockerized ThingsBoard to be under http://IP_ADDR/thingsboard
instead of the default http://IP_ADDR:9090
.
As for the port, I can redirect the request on the port 80
with a reverse proxy. My problem is the path /thingsboard
.
Is there an environment variable that I can use to customize the context path for a ThingsBoard Docker container?
Thanks.