-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env
57 lines (43 loc) · 2.37 KB
/
.env
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
51
52
53
54
55
56
57
# Variables set in here are picked up by docker-compose automatically
# SERVICE_PROTOCOL is the protocol used to access the service from the client:
# "http" or "https"
SERVICE_PROTOCOL=http
# SERVICE_DOMAIN is the domain that the deployment is accessed through. The
# fake FQDN "host.docker.internal" will work in Windows Docker Desktop deployments.
# See the README for other options.
SERVICE_DOMAIN=host.docker.internal
# SERVICE_PORT is the port used by the client to access the service. If the
# client is accessing the embedded reverse proxy directly then this should be
# the same as the PROXY_EXTERNAL_PORT. If the client is going via another
# reverse proxy then this should be the port that proxy listens on (e.g. 443).
SERVICE_PORT=8089
# PROXY_EXTERNAL_PORT is the port that the reverse proxy is going to listen on.
# If there are multiple deployments on the same machine then they all need
# different PROXY_EXTERNAL_PORT settings.
PROXY_EXTERNAL_PORT=8089
# If an external keycloak service is being used, rather than the built-in one
# then the URL needs defining here, e.g. https://keycloak.example.com/auth/
#EXTERNAL_KEYCLOAK_AUTH_SERVER_URL=https://.../auth
# Set this if an external keycloak service is being used, and the realm name
# is different to the default value of 'ssm-realm'.
#KEYCLOAK_REALM=ssm-realm
# Set this if the name of the Spyderisk client in the Keycloak realm has a
# different value than the default value of 'system-modeller'.
#KEYCLOAK_RESOURCE=system-modeller
# Secret shared for communication between SPYDERISK and Keycloak services
# The docker-compose.yml file demonstrates how to insert the value into the
# Keycloak configuration
KEYCLOAK_CREDENTIALS_SECRET=DfkQBcVpjbO6gTMXMBUBfHe45UmFhGxk
# Keycloak admin credentials for creating the insecure built-in keycloak service
KEYCLOAK_ADMIN_USERNAME=admin
KEYCLOAK_ADMIN_PASSWORD=password
# Location of the SPYDERISK System Modeller documentation to be used in the web application:
DOCUMENTATION_URL=https://spyderisk.org/documentation/modeller/latest/
# Version of SPYDERISK System Modeller to use
SPYDERISK_VERSION=v3.5.0
# Version of SPYDERISK System Modeller Adaptor to use
SPYDERISK_ADAPTOR_VERSION=dev-20240517T1119
# Flag to display EULA
DISPLAY_EULA=true
# EULA html
EULA_HTML=<p>The Spyderisk software is open source, licensed under <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache 2.0</a></p>