-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
36 lines (36 loc) · 2.07 KB
/
.env.example
File metadata and controls
36 lines (36 loc) · 2.07 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
# absolute URL (excluding path) to the app. this is needed for the OAuth2 proxy callback URL which can't be constructed otherwise
APP_URL=http://localhost:8089
# if the app is hosted on a sub path, then define it here, ending with "/"
# APP_PATH=/my-subpath/
# log levl [DEBUG, INFO, WARN, ERROR]
LOG_LEVEL=INFO
# password for fuseki user 'admin'. set this before starting the first time!
FUSEKI_PASSWORD="<insert-fuseki-password-here>"
# should fuseki frontend be accessible on path /fuseki ?
EXPOSE_FUSEKI_FRONTEND=false
# shall local profiles be loaded from directory backend/local/profiles/?
LOCAL_PROFILES_ENABLED=true
# shall remote profiles be loaded from NFDI4ING metadata profile service?
MPS_ENABLED=true
# optional search filter query for NFDI4ING metadata profile service
#MPS_QUERY=language=EN&creator=Metadata4Ing&community=&subject=
# CRON expression for syncing profiles
CRON=0 0 * * *
# layout name for frontend [default,nfdi4ing]
#LAYOUT=default
# namespace used when generating new triple subjects
RDF_NAMESPACE=http://example.org/
# comma separated list of standard taxonmies to load and parse labels from
RDF_STANDARD_TAXONOMIES="http://www.w3.org/2000/01/rdf-schema, http://purl.org/dc/terms/, http://www.w3.org/ns/prov, http://www.w3.org/ns/dcat, http://w3id.org/nfdi4ing/metadata4ing"
# comment in the following line to disable authentication and grant all users write access
# DISABLE_OAUTH=disable-oauth
OAUTH2_PROXY_OIDC_ISSUER_URL=https://idm.ulb.tu-darmstadt.de/realms/rdf-store
# cookie secret
# see: https://oauth2-proxy.github.io/oauth2-proxy/configuration/overview/#generating-a-cookie-secret
OAUTH2_PROXY_COOKIE_SECRET="<insert-cookie-secret-here>"
# required group for write access. leave empty to allow all logged in users to write
WRITE_ACCESS_GROUP=publisher
# contact email address displayed if a logged in user has no write access. leave empty to not show a contact message
CONTACT_EMAIL="<insert-contact-email-here>"
# should labels of search facets for properties that target qualified value shapes be prefixed with the node shape label?
PREFIX_QUALIFIED_PROPERTY_LABELS=false