From 6f20e713b0250e48337f44d99ca7abe165c22214 Mon Sep 17 00:00:00 2001 From: Denis Arh Date: Wed, 19 Jun 2019 16:17:26 +0200 Subject: [PATCH] Refresh .env.example --- .env.example | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.env.example b/.env.example index fc3222d08..114b0daef 100644 --- a/.env.example +++ b/.env.example @@ -13,23 +13,19 @@ HTTP_ADDR=:80 SMTP_HOST=localhost:1025 SMTP_USER= SMTP_PASS= -SMTP_FROM="Corteza" +SMTP_FROM="Corteza" # JWT Secret, shared among all services. -# If not set, some random value will be set -AUTH_JWT_SECRET= +# If not set, random value will be set every time you reset the service +#AUTH_JWT_SECRET= -# JWT expiration -AUTH_JWT_EXPIRY= +# JWT expiration (default 30 days) +#AUTH_JWT_EXPIRY= # Debug level you want to use (anything equal or lower than that will be logged) # Values: debug, info, warn, error, panic, fatal LOG_LEVEL=info -# Output log in JSON format -# Setting this to true will enable yoi to ship docker container logs directly to your ELK stack -LOG_JSON=false - # Timeout for internal HTTP client HTTP_CLIENT_TIMEOUT=30s @@ -44,3 +40,6 @@ MONITOR_INTERVAL=5min # Database to use DB_DSN=corteza:corteza@tcp(localhost:3306)/corteza?collation=utf8mb4_general_ci + +# DB query profiler (none, stdout, logger) +#DB_PROFILER=none