Files

15 lines
241 B
Plaintext

# Shiny Server configuration
run_as shiny;
# Define the server
server {
listen 3838;
# Define the location for the app
location / {
site_dir /srv/shiny-server/app;
log_dir /var/log/shiny-server;
directory_index on;
}
}