Yes, I have set ABMShared.AppName = "WirenboardStatus"
The selected lines are of interest.
I would like the url to / js to be not from the root, but /APPNAME/js/...js.
I have a site that also already has a js directory in the root and url to it /js/...js.
I am using nginx location for reverse proxying to my application.
location ~ /(WirenboardStatus|css|js|font) {
...
proxy_pass http://127.0.0.1:51043;
}
.
The location rule also applies to the url /js/... of the site and the application, since they both start from the root.
If it cannot be changed, then I think this is an important flaw.