--
You received this message because you are subscribed to a topic in the Google Groups "Shiny - Web Framework for R" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/shiny-discuss/PEqjLAqdbTU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to shiny-discus...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shiny-discuss/ae7d7753-ffe7-4719-a655-a8f0f92f92a0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
"127.0.0.1"
means that, contrary to previous versions of Shiny, only the current machine can access locally hosted Shiny apps. To allow other clients to connect, use the value "0.0.0.0"
instead (which was the value that was hard-coded into Shiny in 0.8.0 and earlier)."To view this discussion on the web visit https://groups.google.com/d/msgid/shiny-discuss/876fcfb5-de11-4c8f-8c25-987d4f97c125%40googlegroups.com.
That's exactly right. Many people are using shiny for sensitive purposes and so you have to tell it explicitly to allow other computers to access your app.
You received this message because you are subscribed to the Google Groups "Shiny - Web Framework for R" group.
To unsubscribe from this group and stop receiving emails from it, send an email to shiny-discus...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shiny-discuss/21a7c3fc-d804-4917-8799-4513ea1aa284%40googlegroups.com.
Thanks Joe! Are there other useful values for the host parameter?
To view this discussion on the web visit https://groups.google.com/d/msgid/shiny-discuss/CAF_jjKpZh9miTxemVrpmsJFpA8%2BUEOJqXerUo7xvs296q5TzWQ%40mail.gmail.com.
Petty much everyone will use either 127.0.0.1 or 0.0.0.0. (You could provide other values if you want the app to work on one physical network adapter but not another, for example; but it's hard to imagine people doing that without using Shiny Server.)