Ubuntu上的闪亮应用程序文件夹

时间:2016-11-28 12:34:51

标签: ubuntu shiny shiny-server ubuntu-server

在浏览了this和其他有光泽的服务器教程后,我能够达到此目的。

enter image description here

当我点击sample_apps/hello/示例链接时,我到达此处。

enter image description here

RStudio工作正常,但我在哪里放置我的闪亮应用程序,以便我可以共享它们。本教程建议将应用程序存储在/srv/shiny-server/,但无法找到此文件夹。

任何帮助,我是否需要在终端中编写一些代码来激活/使文件夹可见?

enter image description here

我正在使用Putty登录服务器终端。

1 个答案:

答案 0 :(得分:1)

/ srv / shiny-server /位于文件系统的根目录中。

如果您想从主目录中提供闪亮的应用,则需要按照说明进行操作

来自shiny server guide

run_as :HOME_USER:;

# Define the root location
location / {
  user_dirs;

  # Only allow members of the 'shinyUsers' group to host personal applications.
  members_of shinyUsers;
}