Publish an app without /app/ in url

Hi Guys-
When publishing app, is there anyway to skip the /app/ part of he url?
I would like to publish an spp under:
www.my-domain.com/myshinyapp instead of the currently www.my-domain.com/app/myshinyapp

Thank you, Dylan

1 Like

Hi @Dylan_Cissou,

In ShinyProxy, the /app part cannot be skipped as it represents the controller that routes users to their containers.
While you could modify the code and add a custom controller at /myshinyapp that goes directly to the app myshinyapp, a more generic solution might be to have a reverse proxy in front of shinyproxy and have it handle some specific URL rewrites.
An example is mentioned here: Landing page for single app and navbar

1 Like