3
3
##############################################################################
4
4
5
5
## The ${...} substitution syntax (e.g., ${branding.instanceName}) allows to
6
- ## refer # to the value assigned to a specific entry elsewhere in this file.
7
- ## The ${?...} substitution syntax allows to override settings via environment
8
- ## variables. See
9
- ## https://github.com/typesafehub/config#optional-system-or-env-variable-overrides
6
+ ## refer to the value assigned to a specific entry elsewhere in this file.
7
+ ## See https://github.com/lightbend/config#uses-of-substitutions
10
8
11
9
## ---------------------------------------------------------------------------
12
10
## There will be an "admin" user automatically created upon initial start of
@@ -27,7 +25,7 @@ admin {
27
25
## User authentication
28
26
auth {
29
27
## (required) A strong password to generate authentication tokens.
30
- secret = "actual-strong-password"
28
+ secret = "replace-with- actual-strong-password"
31
29
}
32
30
33
31
## ---------------------------------------------------------------------------
@@ -54,11 +52,11 @@ branding {
54
52
55
53
## (optional) URL of image to show in the page header.
56
54
## By default, this will be MMI ORR's logo.
57
- #logo = "? "
55
+ #logo = "http://example.net/somelogo.png "
58
56
59
57
## (optional) URL for "Terms of Use" link.
60
58
## No default value (so no such link is shown).
61
- #tou = "? "
59
+ #tou = "http://example.net/sometou "
62
60
63
61
## (optional) "Contact us" link.
64
62
## No default value (so no such link is shown).
@@ -96,24 +94,16 @@ mongo {
96
94
port = 27017
97
95
}
98
96
99
- ## ---------------------------------------------------------------------------
100
- ## files: managed file locations.
101
- files {
102
- ## DO NOT change this.
103
- baseDirectory = "/opt/orr-ont-base-directory"
104
- }
105
-
106
97
## ---------------------------------------------------------------------------
107
98
## AllegroGraph server (which supports the triple store and SPARQL endpoint)
108
99
agraph {
109
- ## (required) The AG username to access the triple store
100
+ ## (required) The desired AG username to access the ORR triple store
110
101
userName = "test"
111
102
112
- ## (required) The password for the AG username above:
113
- password = "actual -pw"
103
+ ## (required) The desired password for the AG username above:
104
+ password = "replace-with-your-desired -pw"
114
105
115
- ## (required) Name of the AG repository for the ORR.
116
- ## Can be changed if desired.
106
+ ## (required) Desired name for the AG repository to be used for ORR purposes.
117
107
repoName = "mmiorr"
118
108
119
109
## (required) AGraph server host. Should be same value as indicated in
@@ -124,7 +114,7 @@ agraph {
124
114
## `docker-compose.yml` for the environment of the orr service.
125
115
port = 10035
126
116
127
- ## DO NOT change:
117
+ ## DO NOT change this :
128
118
sparqlEndpoint = "http://"${agraph.host}":"${agraph.port}/repositories/${agraph.repoName}
129
119
130
120
## initDelay: (optional) Re-attempt triple store initialization after this delay.
@@ -135,15 +125,16 @@ agraph {
135
125
## (Required) email related information used for user account management and
136
126
## notifications.
137
127
email {
138
- ## (required) account used for sending emails
128
+ ## (required) account used for sending emails.
129
+ ## This account information must be valid in the server indicated below.
139
130
account {
140
131
141
132
password = "actual-pw"
142
133
}
143
134
144
135
## (required) corresponding email server for the account above.
145
136
server {
146
- host = "? "
137
+ host = "smtp.somewhere.example.net "
147
138
port = 465
148
139
prot = "smtps"
149
140
debug = false
@@ -155,3 +146,10 @@ email {
155
146
replyTo = ${admin.email}
156
147
mailer = ${branding.instanceName}
157
148
}
149
+
150
+ ## ---------------------------------------------------------------------------
151
+ ## files: managed file locations.
152
+ files {
153
+ ## DO NOT change this.
154
+ baseDirectory = "/opt/orr-ont-base-directory"
155
+ }
0 commit comments