From 35502a361121cd6604ca90a36b8c40c7c4eb1795 Mon Sep 17 00:00:00 2001 From: fred_the_tech_writer <69817454+fschillingeriv@users.noreply.github.com> Date: Mon, 21 Jun 2021 10:33:52 -0400 Subject: [PATCH] added global.override.env variables (#641) --- _articles/hosting/environment-variables.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/_articles/hosting/environment-variables.md b/_articles/hosting/environment-variables.md index 1d6feeb8..6b8ee93e 100644 --- a/_articles/hosting/environment-variables.md +++ b/_articles/hosting/environment-variables.md @@ -42,6 +42,9 @@ The following variables do not already exist in `global.override.env`, and can b |Variable|Description| |--------|-----------| +|globalSettings__logDirectory=|Specifies the directory to save log files to. By default, `globalSettings__logDirectory=bwdata/logs`.| +|globalSettings__logRollBySizeLimit=|Specify the size limit in bytes to use for rolling log files (e.g. `globalSettings__logRollBySizeLimit=1073741824`).| +|globalSettings__syslog__destination=|Specify a Syslog server or endpoint to send log files to (e.g. `globalSettings__syslog__destination=udp://example.com:514`).| |globalSettings__mail__smtp__trustServer=|Specify `true` to explicitly trust the certificate presented by the SMTP Server (**not recommended for production**).| |globalSettings__mail__smtp__sslOverride=|Specify `true` to use SSL (not TLS) on port 25.| |globalSettings__mail__smtp__startTls=|Specify `true` to force STARTTLS (Opportunistic TLS).|