Hi,
I am using the docker-compose file and configuration files found on Chirpstack GitHub to set up network server, application server, etc. in Docker.
By default, the application server can be accessed through e.g:
localhost:8080/#/login
localhost:8080/api
I am looking for a way to set a context path (e.g. /myapp
), so that the above URLs would change to:
localhost:8080/myapp/#/login
localhost:8080/myapp/api
How can I configure the application server to achieve this?
How can I configure the network server to use this context path in it’s requests to the application server?
Thanks in advance.