Global configuration | Configuration files
The server enables to upload static configuration files. With the impportant notice that the resources are not overidden, it helps configure the server giving static configuration files.
YAML configuration files
Given a base configuration file template, you can create server resources following the attributes accessible through both the administration inteface and the API, the latter having a documentation giving resources schema.
---
version: "1.0"
configuration:
node_name: "test"
gateway:
- [...]
microgateway:
- [...]
backend:
- [...]
identity_provider:
- [...]
client:
- [...]
role:
- [...]
scope:
- [...]
error_template:
- [...]
organization:
- [...]
Manage through User Interface
The Administration interface gives the ability to create, update and delete backends. Backends are listed through the Configuration > upload a configuration file
section in the sidebar menu.
Manage through API
All client operations are accessible through a REST API following the below description. All client management endpoints are protected with a Bearer token that can be obtained with any OAuth flow. In order to get access, you need to have an access token with the private scope configuration:manage:all
granted.
Have a look at the TODO - API documentation