Fixed comment typo, no functional change

This commit is contained in:
Markus Thielen 2023-11-16 18:37:48 +00:00
parent 6bc2e95015
commit db2cf73dce

View File

@ -1,37 +1,37 @@
[generic] [generic]
# log level; can be error, warn, info, debug, trace # log level; can be error, warn, info, debug, trace
log_level = "trace" log_level = "trace"
[graphql] [graphql]
# path and file name to GraphQL schema file # path and file name to GraphQL schema file
schema_file = "todo_schema.graphql" schema_file = "todo_schema.graphql"
allow_introspection = true allow_introspection = true
[proxy] [proxy]
# host name or IP of basebox DB proxy # host name or IP of basebox DB proxy
host = "localhost" host = "localhost"
port = 8081 port = 8081
# Whether to use http or https to connect to the proxy # Whether to use http or https to connect to the proxy
tls = false tls = false
[server] [server]
# Host name of the broker (GraphQL server) # Host name of the broker (GraphQL server)
host = "127.0.0.1" host = "127.0.0.1"
# Port number; default is 80 for http, 443 for https # Port number; default is 80 for http, 443 for https
port = 8080 port = 8080
# number of HTTP server threads to spawn; default is one per CPU core # number of HTTP server threads to spawn; default is one per CPU core
workers = 2 workers = 2
# Path and file name of TLS/SSL key file # Path and file name of TLS/SSL key file
# cert_key_file = "/path/to/key.pem" # cert_key_file = "/path/to/key.pem"
# Path and file name of TLS certificate (chain) file # Path and file name of TLS certificate (chain) file
# cert_file = "/path/to/cert.pem" # cert_file = "/path/to/cert.pem"
[auth] [auth]
# Contents of 'iss' field, usually the URL of the authetnication realm # Contents of 'iss' field, usually the URL of the authentication realm
iss = "https://basebox-test-1.eu.auth0.com/" iss = "https://basebox-test-1.eu.auth0.com/"
# Access token audience field # Access token audience field
aud = "basebox-todo" aud = "basebox-todo"