-
Notifications
You must be signed in to change notification settings - Fork 17
/
.env
35 lines (31 loc) · 1.52 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
####### DATABUS SETTINGS #######
# RESOURCE BASE URL - This should match the DNS entry pointing to your server
DATABUS_RESOURCE_BASE_URL=http://localhost:3000
# do not use qoutation marks for the value here and no trailing space
DATABUS_NAME=My Local Databus
DATABUS_ORG_ICON=
DATABUS_BANNER_COLOR= # Default is #81b8b2
DATABUS_TITLE_COLOR= # Default is white
# OIDC SETTINGS - Only use these values for testing and enter your own OIDC provider values
DATABUS_OIDC_ISSUER_BASE_URL=https://kilt.eu.auth0.com
DATABUS_OIDC_CLIENT_ID=K5PCEOr7OJGBGU9xN7SvBrX1RWDs4S4n
DATABUS_OIDC_SECRET=LiL_X1tzwRmReU3RO7kBlBdDopmVEGf4gj5Ve8No16kifyi3weXK7u6IS1Ttpl_q
DATABUS_PRIVATE_MODE=false
####### DATABASE SETTINGS #######
VIRTUOSO_USER=dba
VIRTUOSO_PASSWORD=onlyweknow
###### PROXY (CADDY) SETTINGS #######
# Disable the proxy server by default:
DATABUS_PROXY_SERVER_ENABLE=false
# When using the proxy, use ACME by default:
DATABUS_PROXY_SERVER_USE_ACME=true
# When not using ACME, what is the name of the own certificate file?
DATABUS_PROXY_SERVER_OWN_CERT="cert.pem"
# When not using ACME, what is the name of the own certificate's key file?
DATABUS_PROXY_SERVER_OWN_CERT_KEY="key.pem"
# What is the hostname of this machine, when using the proxy server?
# It is necessary to know this, in order to set up ACME etc.
# Note: the host name should be identical to DATABUS_RESOURCE_BASE_URL,
# but without specifying a port, protocol i.e. HTTP(S) etc.
# do not use qoutation marks for the value here and no trailing space
DATABUS_PROXY_SERVER_HOSTNAME=my-databus.org