mirror of
https://github.com/dylanbenzi/hurricane_normalization_app.git
synced 2026-07-29 21:01:27 +00:00
15 lines
241 B
Plaintext
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;
|
|
}
|
|
}
|