I am displaying lots of apps on ShinyProxy but I want to customize app link. ShinyProxy 3.2.0 is adding default /app/ prefic for every app. For example, I have a “abcd” display name of an app, I want to see http://localhost:8080/abcd link for my app but it shows me http://localhost:8080/app/abcd. What can I do?
I hope, I could explain my problem. Thank you!
Hi
ShinyProxy indeed uses the /app/
prefix, this has been the case for a long time. There is no way to change this currently, as it would be difficult to match the correct app. However, you could setup a redirect (e.g. in a reverse proxy) to redirect http://localhost:8080/abcd to http://localhost:8080/app/abcd . The user will still see http://localhost:8080/app/abcd in their browser, but the app can be accessed on http://localhost:8080/abcd as well.