Fixed comment typo, no functional change
This commit is contained in:
parent
db2cf73dce
commit
b968788481
@ -1,47 +1,47 @@
|
|||||||
[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"
|
||||||
|
|
||||||
[oidc_config]
|
[oidc_config]
|
||||||
# Incoming ID tokens are validated using, among other, the following fields.
|
# Incoming ID tokens are validated using, among other, the following fields.
|
||||||
# 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"
|
||||||
|
|
||||||
[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"
|
||||||
# Path and file name of the resolver map file
|
# Path and file name of the resolver map file
|
||||||
resolver_map_file = "bb_todo-resolver.toml"
|
resolver_map_file = "bb_todo-resolver.toml"
|
||||||
# Path and file name of the type map file
|
# Path and file name of the type map file
|
||||||
type_map_file = "bb_todo-typemap.json"
|
type_map_file = "bb_todo-typemap.json"
|
||||||
|
|
||||||
[database]
|
[database]
|
||||||
# Type of database; currently, only "postgres" is suppoerted
|
# Type of database; currently, only "postgres" is suppoerted
|
||||||
db_type = "postgres"
|
db_type = "postgres"
|
||||||
# The host where the DB server is runnung
|
# The host where the DB server is runnung
|
||||||
host = "localhost"
|
host = "localhost"
|
||||||
# Port the DB server is listening at
|
# Port the DB server is listening at
|
||||||
port = 5432
|
port = 5432
|
||||||
# Database name
|
# Database name
|
||||||
db_name = "bb_todo"
|
db_name = "bb_todo"
|
||||||
username = "bb_todo"
|
username = "bb_todo"
|
||||||
password = "basebox"
|
password = "basebox"
|
||||||
ssl_mode = "no"
|
ssl_mode = "no"
|
||||||
|
|
||||||
[server]
|
[server]
|
||||||
# Host name of (this) proxy server
|
# Host name of (this) proxy server
|
||||||
host = "localhost"
|
host = "localhost"
|
||||||
|
|
||||||
# Port number; default is 80 for http, 443 for https
|
# Port number; default is 80 for http, 443 for https
|
||||||
port = 8081
|
port = 8081
|
||||||
|
|
||||||
# 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"
|
||||||
|
Loading…
Reference in New Issue
Block a user