Configure HTTP/GraphQL server
- Edit
config/graphql.toml
Bind address and port
Configure the bind address and port:
hostname = "localhost"
port = 31415
If you bind on localhost the GraphQL server is not reachable from outside. Use the hostname or ip which is reachable from outside.
Secure connections (HTTPS/WSS)
Enable HTTPS/WSS:
secure = true
Shutdown timeout
The following setting Timeout for graceful worker shutdown in seconds.
After receiving a stop signal, workers have this much time to finish serving requests. Workers still alive after the timeout are force dropped. By default, shutdown timeout is set to 30 seconds.
shutdown_timeout = 3
Number of workers
This setting specifies the number of worker threads. The default number of worker threads is the number of physical CPU cores available.
workers = 16
Default web resource provider
Plugins can provide web resources using a WebResourceProvider.
The URLs are prefixed with the base path of the web resource provider. For example, the plugin
binary
provides a WebResourceProvider
with the base path binary
. Therefore, the URL starts
with http(s)://hostname:31415/binary/
.
The default_context_path
defines which web resource provider is the default by its base path. This
means that the URL https://hostname:31415/entities/uuid/property_name
will be handled by the
WebResourceProvider binary and is doing the same as
https://hostname:31415/binary/entities/uuid/property_name
.
default_context_path = "binary"
In particular, this is very useful for web applications which shall handle the root URL: https://hostname:31415/
Logging
You can enable or disable logging of HTTP/GraphQL requests and specify the log format. If no format is specified the default log format is used.
[logging]
enabled = true
format = "%a \"%r\" %s %b \"%{Referer}i\" \"%{User-Agent}i\" %T"