0

I had an issue with an app or all apps that are running locally with shiny server , I did much troubleshooting but always getting "Disconnected from the server. Reload"

all logs are from 05 january , I still dont know what is the real reason behind this , any expert who can assist ?

Thanks

restarting , reloading shiny server

checking logs but nothing came up

1 Answers1

0

By default, shiny server will go to sleep and kill the associated R process if there is no activity. You can stop this behavior by setting:

location / {
    app_idle_timeout 0;
}

In /etc/shiny-server/shiny-server.conf

More details in the shiny server docs and this SO question

erikor
  • 254
  • 8