openanalytics / shinyproxy

ShinyProxy - Open Source Enterprise Deployment for Shiny and data science apps
https://www.shinyproxy.io
Apache License 2.0
525 stars 151 forks source link

"Default" added to thge app name in browser tab #515

Closed dylancis closed 3 months ago

dylancis commented 3 months ago

Each of the app deployed in ShinyProxy shows a suffix to the app name - Default. Why is that and how can turn that off please?

image

jkkbuddika commented 3 months ago

@dylancis This gets added from the app.html template. I ended up adding a custom app.html using proxy.template-path configuration parameter.

See the following line from default app.html: https://github.com/openanalytics/shinyproxy/blob/14a3224df6b75d70fae676d5e54c6ad691549b97/src/main/resources/templates/app.html#L27

You can basically modify this line to get rid of "- Default".

dylancis commented 3 months ago

Thanks a lot @jkkbuddika