I have a windows machine with IIS and I can see the IIS welcome page on http://myname/
. I have recently started using Shiny through its own server and I can see shiny apps on http://127.0.0.1:port
Now my question is how can I allow others to see my shiny apps on http://myname:port
? (since 127.0.0.1 is not accessible from other computers). Is this possible with the free version of shiny?
runApp(app, host = "0.0.0.0", port = 7512)
(as @Yihui suggested) and then accessing it from another machine in the network using[yourmacninename:7512]
works. – Nievelt