From 4bdd5f652457b77e98a6d4b6b2afb35a9ab940ef Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Mon, 27 Apr 2026 23:35:30 +0200 Subject: [PATCH] Add configuration file template --- server.conf | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 server.conf diff --git a/server.conf b/server.conf new file mode 100644 index 0000000..f2b581d --- /dev/null +++ b/server.conf @@ -0,0 +1,30 @@ +[server] +# The host to bind the socket. Default is '0.0.0.0' +# host= + +# The port to listen. Default is 3000. +# port= + +[docs] +# The path for the Swagger UI documentation. If an empty path is +# specified, no Swagger UI documentation will be available. Default is +# '/docs'. +# swagger= + +# The path for the ReDoc documentation. If an empty path is specified, +# no ReDoc documentation will be available. Default is '/redoc'. +# redoc= + +# The path for the Open API API specification. If an empty path is +# specified, no API specification will be available. Default is +# '/openapi.json'. +# Warning: If the API specification is not available, Swagger UI and +# ReDoc documentation may not work. +# openapi= + +[logging] +# The file for the logs. Default is stdout ('/proc/self/fd/1'). +# logfile= + +# The log level. Default is INFO. +# loglevel= \ No newline at end of file