Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Guillaume Perréal
easy16S
Commits
d16b8192
Commit
d16b8192
authored
Nov 05, 2018
by
Midoux Cedric
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add shiny-server.conf
parent
df95cbd4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
README.md
README.md
+27
-0
No files found.
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