modify dockerfile and add shiny server config to host rmd

This commit is contained in:
2025-11-29 23:24:43 -05:00
parent dd75820dd1
commit 5644ecbd6b
2 changed files with 30 additions and 9 deletions
+14
View File
@@ -0,0 +1,14 @@
# 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;
}
}