# home directory we find the application in.
run_as :HOME_USER:;
# Define a server that listens of port 3838.
server {
listen 3838;
# Define a location at the base URL
location / {
# Allow users to host their own apps in ~/ShinyApps
user_dirs;
# Optionally, you can restrict the privilege of hosting Shiny applications
# only to members of a particular Linux group.
# members_of shinyUsers;
app_init_timeout 90;
app_idle_timeout 10;
}
}
I am testing if the app times out after 10 secs. But the timeout doesn't seem to work. Any advice?
Thanks,
Roy