-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.yml
More file actions
50 lines (49 loc) · 2.02 KB
/
Copy pathapplication.yml
File metadata and controls
50 lines (49 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Sample ShinyProxy configuration for the Algorithm Viewer
proxy:
title: Big Life Lab Shiny Apps
# logo-url: /assets/img/pbl-lettering-white.svg # Add your logo here
landing-page: /
# template-path: ./shinyproxy-template # For a custom UI
heartbeat-rate: 10000
heartbeat-timeout: 60000
port: 8080
authentication: none # Use 'simple' to enable passwords in the 'users' section
admin-groups: admins
# Example: 'simple' authentication configuration (if "authentication: simple"
# is set).
#
# Do NOT hard-code real credentials here. ShinyProxy is a Spring Boot
# application, so it resolves ${ENV_VAR} placeholders from environment
# variables (with an optional ${ENV_VAR:default} fallback). Set a strong
# password via an environment variable before starting ShinyProxy, e.g.:
#
# export SHINYPROXY_USERNAME=biglifelab
# export SHINYPROXY_PASSWORD='a-strong-secret'
#
# With Docker, either forward the values already exported in your shell
# (the bare "-e NAME" form copies NAME's value from the host shell):
#
# docker run -e SHINYPROXY_USERNAME -e SHINYPROXY_PASSWORD ... shinyproxy
#
# or set them inline with the "-e NAME=value" form:
#
# docker run -e SHINYPROXY_USERNAME=biglifelab \
# -e SHINYPROXY_PASSWORD='a-strong-secret' ... shinyproxy
#
# (or list them under `environment:` in docker-compose.yml). The values are
# then substituted below at startup and never committed in plain text.
users:
- name: ${SHINYPROXY_USERNAME:biglifelab}
password: ${SHINYPROXY_PASSWORD}
groups: scientist
docker:
port-range-start: 20000
specs:
- id: algorithm-viewer
display-name: Algorithm Viewer
description: An application for visualizing health risk prediction algorithms, displaying various curves and comparisons.
container-image: algorithm-viewer:latest
# logo-url: /assets/img/algorithm-viewer.svg # Custom logo for the Algorithm Viewer
logging:
file:
name: shinyproxy.log