diff --git a/README.md b/README.md index e0e7fed4c4c65a5d059d9456e5d183b27fdaa13f..aa9e015aac5a12193e027aba402ad65f2b27564e 100644 --- a/README.md +++ b/README.md @@ -1 +1,28 @@ Development of an R-shiny application to quickly and easily analyze 16S data. + +# Shiny Server +Easy16S application actualy works on a Open Source Shiny Server. +This is `/etc/shiny-server/shiny-server.conf` : +```bash +# Instruct Shiny Server to run applications as the user "shiny" +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; + } +} +```