From dccdc2593f21c25490df1d5271ac7e6dc7d365d2 Mon Sep 17 00:00:00 2001 From: Trivernis Date: Tue, 14 Jan 2020 16:08:25 +0100 Subject: [PATCH] Reformat default config --- config/default.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/config/default.toml b/config/default.toml index 9c52a26..0d50827 100644 --- a/config/default.toml +++ b/config/default.toml @@ -1,35 +1,43 @@ # Configuration of the database connection [database] + # A connection uri string to the database connectionUri = "sqlite://greenvironment.db" # Configuration for the redis connection [redis] + # A connection uri string to the redis server connectionUri = "redis://localhost:6379" # Configuration of the http server [server] + # The port the server is running on port = 8080 + # Allow cross origin requests cors = false + # The timeout for a server response timeout = 30000 # Configuration for the sessions [session] + # A secret that is used for the sessions. Must be secure secret = "REPLACE WITH SAFE RANDOM GENERATED SECRET" + # The maximum age of a cookie. The age is reset with every request of the client cookieMaxAge = 6048e+5 # 7 days # Configuration for markdown rendering [markdown] + # The plugins used in the markdown parser plugins = ["markdown-it-emoji"] @@ -61,16 +69,22 @@ maxQueryComplexity = 5000 # Configuration for the api rate limit [api.rateLimit] + # rate limit of /upload [api.rateLimit.upload] + # The time in milliseconds before the rate limit is reset expire = 60000 + # The total number of calls allowed before rate limiting total = 10 + # rate limit of /graphql [api.rateLimit.graphql] + # The time in milliseconds before the rate limit is reset expire = 60000 + # The total number of calls allowed before rate limiting total = 30