r - hosting and setting up own shiny apps without shiny server -



r - hosting and setting up own shiny apps without shiny server -

i'm trying create shiny apps available coworkers without them having run or have r installed.

so read wegpage http://shiny.rstudio.com/tutorial/lesson7/ , found sentence:

'if familiar web hosting or have access department, can host shiny apps yourself.' under 'share web page'-section.

i wondering if can point me help regarding topic? minimal requirements (or tutorial). problem company bound restrictions regarding web hosting , security , on, , not (for now) pay shiny-server-pro.

but sentence above gives me hope set ourselves convince them.

can help?

if pc , coworkers pcs belong same lan, pretty easy achieve. run app through:

runapp(host="0.0.0.0",port=5050)

the value set through host argument says take connection (not localhost). port argument can assume value want (just assure avoid select ports used other services ssh or http). then, take note of local ip (if under linux, can see through ifconfig). ip 192.168.1.70. colleagues can utilize app inserting in address bar of browser 192.168.1.70:5050, i.e. ip followed : , port number selected.

if want access outside lan, can direct router pc when connect public ip through 5050 port.

r web-hosting shiny shiny-server

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -