When I input the last 3 lines, I get the error chown: missing operand after ‘root:shiny-apps’
, chmod: missing operand after ‘g+w’
and chmod: missing operand after ‘g+s’
I'm very appreciate your reply. and here is my shiny-server.conf
run_as shiny;
# Define a server that listens on port 3838
server {
listen 3838;
# Define a location at the base URL
location / {
# Host the directory of Shiny Apps stored in this directory
site_dir /srv/shiny-server;
# Log all Shiny output to files in this directory
log_dir /var/log/shiny-server;
# When a user visits the base URL rather than a particular application,
# an index of the applications available in this directory will be shown.
directory_index on;
}
}