You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am requesting a router enhancement for R Cloud urls. Many customers would like to be able to serve content with their own branded domain and contextual path. An example of a service url for a Shiny page is as follows:
The hostname part can be solved with a DNS update but providing a contextual path that is clean looking to customers I do not believe is feasible at this time.
My request is to implement a router function in the rcloud server. This router function would allow a user in the advanced menu to invoke a router wizard which allows the user to specify a path name at the for the RCloud host and then define how the platform should process that path. Using my simple example:
All the requirements for this feature other than the simple case have been left intentionally vague other than the base example to permit flexibility of implementation if this feature enhancement is taken on...
The text was updated successfully, but these errors were encountered:
The R scripts (like notebook.R) support path parsing, so in principle you could write one that does something (similar to proxy.R). However, what Lance is proposing cannot work in generality, because a) it would change the root of the document and b) those pages actually rely on the query string so you can't strip it. The browser has to actually go to the full URL for it to function.
We can special-case things like shiny.html by having let's say shiny.R that generates modified code that embeds the query variables in the html output, but it's only viable for such special cases since the underlying system has to be aware of the change.
As for branded domain/URL, that's really up to the user - you can always create one using iframe, e.g., see https://rcloud.social/notebook.R/s-u/iframe-example so I don't think this has really anything to do with RCloud
I am requesting a router enhancement for R Cloud urls. Many customers would like to be able to serve content with their own branded domain and contextual path. An example of a service url for a Shiny page is as follows:
https://rcloud.web.att.com/shiny.html?notebook=6aeb54df08e2affe4b02f31c44de7015
Where many teams would like to be able to have something like this:
https://our.teams.host.name/shrinkage/report
The hostname part can be solved with a DNS update but providing a contextual path that is clean looking to customers I do not believe is feasible at this time.
My request is to implement a router function in the rcloud server. This router function would allow a user in the advanced menu to invoke a router wizard which allows the user to specify a path name at the for the RCloud host and then define how the platform should process that path. Using my simple example:
Would be resolved by the rcloud platform as:
All the requirements for this feature other than the simple case have been left intentionally vague other than the base example to permit flexibility of implementation if this feature enhancement is taken on...
The text was updated successfully, but these errors were encountered: