-
Notifications
You must be signed in to change notification settings - Fork 1
/
dcatd.yml
88 lines (79 loc) · 1.69 KB
/
dcatd.yml
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
plugins:
- datacatalog.plugins.postgres
- datacatalog.plugins.dcat_ap_ams
- datacatalog.plugins.swift
primarySchema: dcat-ap-ams
logging:
formatters:
default:
format: '%(asctime)s dcat_core %(levelname)-8s %(module)s:%(lineno)d: %(message)s'
handlers:
aiohttp.access:
class: logging.StreamHandler
console:
class: logging.StreamHandler
formatter: default
loggers:
# See also: <http://aiohttp.readthedocs.io/en/stable/logging.html>
aiohttp:
propagate: true
aiohttp.*:
propagate: true
aiohttp.access:
handlers:
- aiohttp.access
level: ${LOGLEVEL:-WARNING}
propagate: false
aiohttp_extras:
handlers:
- console
level: ${LOGLEVEL:-WARNING}
propagate: false
config_loader:
handlers:
- console
level: ${LOGLEVEL:-WARNING}
propagate: false
datacatalog:
handlers:
- console
level: ${LOGLEVEL:-WARNING}
propagate: false
plugin.storage.postgres:
handlers:
- console
level: ${LOGLEVEL:-WARNING}
propagate: false
root:
handlers:
- console
level: ${LOGLEVEL:-WARNING}
version: 1
storage_postgres:
name: ${DB_DATABASE}
host: ${DB_HOST}
pass: ${DB_PASS}
port: ${DB_PORT}
user: ${DB_USER}
mode: ${DB_MODE:-READWRITE}
storage_swift:
user: ${SWIFT_USER:-catalogus}
password: ${SWIFT_PASSWORD:-insecure}
base_url: ${SWIFT_BASE_URL}
container: ${SWIFT_CONTAINER:-non_existing}
web:
port: 8000
baseurl: ${WEB_BASE_URL}
allow_cors: true
jwks: ${PUB_JWKS}
jwks_url: ${JWKS_URL}
allowed_signing_algorithms:
- HS256
- HS384
- HS512
- ES256
- ES384
- ES512
- RS256
- RS384
- RS512