forked from guardian/grid
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.json5
61 lines (55 loc) · 1.14 KB
/
config.json5
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
58
59
60
61
{
// An API key used to ingest images from the s3watcher.
s3Watcher: {
key: 'dev-'
},
es6: {
cluster: 'media-service',
url: 'http://localhost:9200',
shards: 1,
replicas: 0
},
google: {
tracking: {
id: ''
}
},
// Front end support links/email
links: {
feedbackForm: '',
usageRightsHelp: '',
invalidSessionHelp: '',
supportEmail: ''
},
security: {
frameAncestors: '',
// A list of trusted origins to allow requests from.
// These should be the subdomain to trust as the domain is added automatically..
// Grid will trust requests with a cookie and an `Origin` header set to this value.
// See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin.
corsAllowedOrigins: [ 'integration-tests' ]
},
// Guardian specific properties for the Usage service
guardian: {
capi: {
poll: 5,
live: {
url: '',
key: ''
},
preview: {
url: '',
}
},
crier: {
live: {
streamName: '',
roleArn: ''
},
preview: {
streamName: '',
roleArn: ''
}
}
}
}