-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathserver.yaml
More file actions
64 lines (60 loc) · 2.09 KB
/
server.yaml
File metadata and controls
64 lines (60 loc) · 2.09 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
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
server:
port: 8080
logging:
jsonLogging: true
logRequests: true
verifier:
tirAddress: https://tir.de
did: did:key:myverifier
policies:
default:
SignaturePolicy: {}
IssuedDateBeforePolicy: {}
ValidFromBeforePolicy: {}
ExpirationDateAfterPolicy: {}
EbsiTrustedIssuerRegistryPolicy:
registryAddress: https://tir.de
issuerType: Undefined
credentialTypeSpecific:
"gx:compliance":
GaiaXComplianceIssuer:
registryAddress: https://registry.gaia-x.fiware.dev/development/api/complianceIssuers
ssiKit:
auditorURL: http://my-auditor
# configRepo defines the service configurations with their scopes and trust endpoints.
# Each service under configRepo.services can optionally specify allowedOrigins to control
# which origins are permitted for CORS requests. When omitted or empty, the default
# behavior is to allow all origins (["*"]) for backward compatibility.
#
# configRepo:
# services:
# - id: my-service
# defaultOidcScope: defaultScope
# # allowedOrigins restricts CORS requests to the listed origins for this service.
# # Origins from all services are merged into a single deduplicated list.
# # If any service includes "*", all origins are allowed (wildcard).
# # If omitted or empty, defaults to ["*"] (allow all origins).
# allowedOrigins:
# - "https://my-app.example.com"
# - "https://admin.example.com"
# oidcScopes:
# defaultScope:
# credentials:
# - type: VerifiableCredential
# trustedIssuersLists:
# - https://tir.example.com
# Integrated Credentials Config Service (CCS) database connection.
# Uncomment to enable database-backed service configuration.
# database:
# type: postgres
# host: localhost
# port: 5432
# name: ccs
# user: ccs
# password: ccs
# sslMode: disable
# Second HTTP server for the CCS REST API.
# Requires a valid 'database' section above.
# configServer:
# enabled: true
# port: 8090