Rshiny Server默认配置

1、shiny-server 配置

  配置文件路径(默认)

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

  配置内容

  1. # Instruct Shiny Server to run applications as the user "shiny"
  2. run_as shiny;
  3. # Define a server that listens on port 3838
  4. server {
  5. listen 8080;
  6. # Define a location at the base URL
  7. location / {
  8. # Host the directory of Shiny Apps stored in this directory
  9. site_dir /export/shiny-server/data;
  10. # Log all Shiny output to files in this directory
  11. log_dir /var/log/shiny-server;
  12. # When a user visits the base URL rather than a particular application,
  13. # an index of the applications available in this directory will be shown.
  14. directory_index on;
  15. }
  16. }

2、应用程序位置

Shiny Server默认位置/srv/shiny-server/

可以把你开发的apps拷贝这个目录下


你可能感兴趣的:(R,运维小尝试)