-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.env.template
52 lines (38 loc) · 1.9 KB
/
.env.template
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
# Variables set in here are picked up by docker-compose automatically
# Service ports on host
#TOMCAT_PORT=8081
#NODEJS_PORT=3000
#JAVADEBUG_PORT=5005
#KEYCLOAK_PORT=8080
# Linux developers should uncomment this line:
#DOCKER_GATEWAY_HOST=172.17.0.1
# SERVICE_PROTOCOL is the protocol used to access the service from the client:
# "http" or "https"
#SERVICE_PROTOCOL=http
# 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
# Location of the Spyderisk System Modeller documentation to be used in the web application:
#DOCUMENTATION_URL=https://spyderisk.org/documentation/modeller/latest/
# Location of knowledgebase query (script)
KNOWLEDGEBASE_DOCS_QUERY_URL=https://docs.spyderisk.org/knowledgebase/q
# Set this if the realm name is different to the default value of 'ssm-realm'.
#KEYCLOAK_REALM=ssm-realm
# Secret shared for communication between Spyderisk and Keycloak services
# The docker-compose.yaml file demonstrates how to insert the value into the Keycloak configuration
#KEYCLOAK_CREDENTIALS_SECRET=DfkQBcVpjbO6gTMXMBUBfHe45UmFhGxk
# Keycloak admin account credentials
#KEYCLOAK_ADMIN_USERNAME=admin
#KEYCLOAK_ADMIN_PASSWORD=password
# Spring boot application property reset.on.start, default value is true
#RESET_ON_START=false
# 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>