Is there a way to run windmill under a subpath?
I'm trying to run windmill behind traefik at a subpath like /apps
This dosen't work however, because the client tries to load the javascript at /_app/* instead of /admin/_app/*
4 Replies
No, you can look up the source of the clients and see that they assume the root
/
to all requests.I see, thanks
You can have traefik strip the /apps from the request no?
I tried to have traefik add a route middleware, but it never reaches /admin anyways, since windmill is trying to load from /_app at a root level