Resolves: RHEL-107924 - Improve default httpd LogFormats for better support

diagnostics
This commit is contained in:
Luboš Uhliarik 2025-11-27 16:16:58 +01:00
parent 0d46269f5b
commit 427878438d
2 changed files with 7 additions and 3 deletions

View File

@ -198,8 +198,8 @@ LogLevel warn
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" PID: %P %{tid}P %T" combined
LogFormat "%h %l %u %t \"%r\" %>s %b PID: %P %{tid}P %T" common
<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O

View File

@ -25,7 +25,7 @@
Summary: Apache HTTP Server
Name: httpd
Version: 2.4.63
Release: 8%{?dist}
Release: 9%{?dist}
URL: https://httpd.apache.org/
Source0: https://www.apache.org/dist/httpd/httpd-%{version}.tar.bz2
Source1: https://www.apache.org/dist/httpd/httpd-%{version}.tar.bz2.asc
@ -846,6 +846,10 @@ exit $rv
%{_rpmconfigdir}/macros.d/macros.httpd
%changelog
* Thu Nov 27 2025 Luboš Uhliarik <luhliari@redhat.com> - 2.4.63-9
- Resolves: RHEL-107924 - Improve default httpd LogFormats for better support
diagnostics
* Thu Nov 06 2025 Luboš Uhliarik <luhliari@redhat.com> - 2.4.63-8
- Resolves: RHEL-125880 - mod_ssl: allow more fine grained SSL SNI vhost check
to avoid unnecessary 421 errors after CVE-2025-23048 fix