Still seem to be running into request header size issues.
ensure that both apache and quarkus limits are sufficient and match.
add QUARKUS_HTTP_LIMITS_MAX_HEADER_SIZE and maybe QUARKUS_HTTP_LIMITS_MAX_HEADER_LIST_SIZE
keycloak/keycloak#10236
check LimitRequestFieldSize and LimitRequestFields apache config
Chatgpt thinks the following is reasonable:
# Apache side
LimitRequestFieldSize 32768 #32KB
LimitRequestFields 200
# Keycloak side
-e QUARKUS_HTTP_LIMITS_MAX_HEADER_SIZE=65536 #64KB
if that doesnt work, some people had luck with disabling quarkus http2: quarkus.http.http2=false
maybe cut it in half and increase if not enough?
LimitRequestFieldSize 16384
-e QUARKUS_HTTP_LIMITS_MAX_HEADER_SIZE=32768
Still seem to be running into request header size issues.
ensure that both apache and quarkus limits are sufficient and match.
add
QUARKUS_HTTP_LIMITS_MAX_HEADER_SIZEand maybeQUARKUS_HTTP_LIMITS_MAX_HEADER_LIST_SIZEkeycloak/keycloak#10236
check
LimitRequestFieldSizeandLimitRequestFieldsapache configChatgpt thinks the following is reasonable:
if that doesnt work, some people had luck with disabling quarkus http2:
quarkus.http.http2=falsemaybe cut it in half and increase if not enough?