You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/configuration/alpha_config.md
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -173,6 +173,7 @@ They may change between releases without notice.
173
173
| `Cookie` | _[Cookie](#cookie)_ | Cookie is used to configure the cookie used to store the session state.<br/>This includes options such as the cookie name, its expiry and its domain. |
174
174
| `Session` | _[SessionOptions](#sessionoptions)_ | Session is used to configure the session storage.<br/>To either use a cookie or a redis store. |
175
175
| `PageTemplates` | _[PageTemplates](#pagetemplates)_ | PageTemplates is used to configure custom page templates.<br/>This includes the sign in and error pages. |
176
+
| `Logging` | _[Logging](#logging)_ | Logging is used to configure the logging output.<br/>Which formats are enabled and where to write the logs. |
176
177
177
178
### AzureOptions
178
179
@@ -317,6 +318,41 @@ make up the header value
317
318
| `Groups` | _[]string_ | Group enables to restrict login to members of indicated group |
318
319
| `Roles` | _[]string_ | Role enables to restrict login to users with role (only available when using the keycloak-oidc provider) |
319
320
321
+
### LogFileOptions
322
+
323
+
(**Appears on:** [Logging](#logging))
324
+
325
+
LogFileOptions contains options for configuring logging to a file
326
+
327
+
| Field | Type | Description |
328
+
| ----- | ---- | ----------- |
329
+
| `Filename` | _string_ | |
330
+
| `MaxSize` | _int_ | |
331
+
| `MaxAge` | _int_ | |
332
+
| `MaxBackups` | _int_ | |
333
+
| `Compress` | _bool_ | |
334
+
335
+
### Logging
336
+
337
+
(**Appears on:** [AlphaOptions](#alphaoptions))
338
+
339
+
Logging contains all options required for configuring the logging
0 commit comments