Inhaltsverzeichnis

2.1 appsettings.json

Main configuration file of the Gateway.

Location

In the application directory: appsettings.json

Structure

{
  "Gateway": {
    "DefaultDialect": "mssql",
    "DetailedErrors": false,
    "AllowAdHocQueries": true,
    "Databases": [...]
  },
  "Kestrel": {
    "Endpoints": {...}
  },
  "Logging": {...}
}

Sections

Section Description
Gateway Application configuration
Kestrel HTTP server (ports, HTTPS)
Logging Log level and output

Next