2022-06-15 07:51:47 +00:00
|
|
|
---
|
|
|
|
title: "Log Messages"
|
|
|
|
description: "A collection of log message reference information"
|
|
|
|
lead: "This section contains log message references for Authelia."
|
2022-06-28 05:27:14 +00:00
|
|
|
date: 2022-06-15T17:51:47+10:00
|
2022-06-15 07:51:47 +00:00
|
|
|
draft: false
|
|
|
|
images: []
|
|
|
|
menu:
|
|
|
|
reference:
|
|
|
|
parent: "guides"
|
|
|
|
weight: 220
|
|
|
|
toc: true
|
|
|
|
---
|
|
|
|
|
|
|
|
## Request Header Too Large
|
|
|
|
|
|
|
|
The `request header too large` error with a status code of `431` indicates the HTTP request made to *Authelia* had
|
2022-08-08 21:50:12 +00:00
|
|
|
headers exceeding the server [read buffer](../../configuration/miscellaneous/server.md#buffers) parameter.
|
2022-06-15 07:51:47 +00:00
|
|
|
|
|
|
|
Usually the defaults are sufficient however some applications cause fairly large headers to be added to requests.
|
|
|
|
|
2022-08-08 21:50:12 +00:00
|
|
|
It's suggested you increase the [read buffer](../../configuration/miscellaneous/server.md#buffers)
|
2022-06-15 07:51:47 +00:00
|
|
|
configuration option (by either doubling or quadrupling it) in order to alleviate this issue or use the reverse proxy to
|
|
|
|
remove the excessive headers which are causing this issue.
|
|
|
|
|
2022-08-08 21:50:12 +00:00
|
|
|
It's generally recommended the [write buffer](../../configuration/miscellaneous/server.md#buffers) is
|
2022-06-15 07:51:47 +00:00
|
|
|
also increased.
|
|
|
|
|
|
|
|
## User Has Been Inactive Too Long
|
|
|
|
|
|
|
|
An error with the text `User john has been inactive for too long` where `john` is the username indicates the user did
|
|
|
|
not decide to utilize the remember me option, and their session has not been used for more time than is configured in
|
|
|
|
the session [inactivity](../../configuration/session/introduction.md#inactivity) configuration option.
|
|
|
|
|
|
|
|
This error can safely be ignored as it is meant to be informative. You can reduce this error from occurring by adjusting
|
|
|
|
the session [inactivity](../../configuration/session/introduction.md#inactivity) configuration option or by having users
|
|
|
|
select the remember me box.
|