Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Cedric Midoux
Easy16S
Commits
d16b8192
Commit
d16b8192
authored
Nov 05, 2018
by
Cedric Midoux
Browse files
add shiny-server.conf
parent
df95cbd4
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
d16b8192
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
;
}
}
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment