This commit is contained in:
parent
bb17b9eec2
commit
e125344f53
@ -1,3 +1,62 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 00:49:29 CET 2008 - poeml@suse.de
|
||||
|
||||
- update to 2.2.11:
|
||||
core:
|
||||
- Worker MPM: Crosscheck that idle workers are still available
|
||||
before using them and thus preventing an overflow of the
|
||||
worker queue which causes a SegFault. PR 45605
|
||||
- Add ap_timeout_parameter_parse to public API.
|
||||
- When the ap_http_header_filter processes an error bucket,
|
||||
cleanup the passed brigade before returning AP_FILTER_ERROR
|
||||
down the filter chain. This unambiguously ensures the same
|
||||
error bucket isn't revisited
|
||||
- Error responses set by filters were being coerced into 500
|
||||
errors, sometimes appended to the original error response. Log
|
||||
entry of: 'Handler for (null) returned invalid result code -3'
|
||||
- configure: Don't reject libtool 2.x PR 44817
|
||||
- Build: Correctly set SSL_LIBS during openssl detection if
|
||||
pkgconfig is not available. PR 46018
|
||||
mod_autoindex:
|
||||
- add configuration option to insert string in HTML HEAD (IndexHeadInsert).
|
||||
mod_cache:
|
||||
- Convert age of cached object to seconds before comparing it to
|
||||
age supplied by the request when checking whether to send a
|
||||
Warning header for a stale response. PR 39713.
|
||||
mod_expires:
|
||||
- Do not sets negative max-age / Expires header in the past. PR 39774
|
||||
mod_info:
|
||||
- Was displaying the wrong value for the KeepAliveTimeout value.
|
||||
mod_log_config:
|
||||
- Add new LogFormat parameter, %k, which logs the number of
|
||||
keepalive requests on this connection for this request. PR 45762
|
||||
mod_proxy:
|
||||
- Add the possibility to set the worker parameters
|
||||
connectiontimeout and ping in milliseconds.
|
||||
- Prevent segmentation faults by correctly adjusting the
|
||||
lifetime of the buckets read from the proxy backend. PR 45792
|
||||
mod_proxy_ajp:
|
||||
- Do not fail if response data is sent before all request
|
||||
data is read. PR 45911
|
||||
- Fix wrongly formatted requests where client sets
|
||||
Content-Length header, but doesn't provide a body. Servlet
|
||||
container always expects that next packet is body whenever C-L
|
||||
is present in the headers. This can lead to wrong
|
||||
interpretation of the packets. In this case send the empty
|
||||
body packet, so container can deal with that.
|
||||
mod_proxy_balancer:
|
||||
- Add in forced recovery for balancer members if
|
||||
all are in error state.
|
||||
mod_rewrite:
|
||||
- Export and install the mod_rewrite.h header to ensure the optional
|
||||
rewrite_mapfunc_t and ap_register_rewrite_mapfunc functions are
|
||||
available to third party modules.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 17 15:45:07 CET 2008 - poeml@suse.de
|
||||
|
||||
- remove mod_authn_dbm and mod_suexec from the default module list.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 21 12:01:00 CET 2008 - skh@suse.de
|
||||
|
||||
|
65
apache2.spec
65
apache2.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package apache2 (Version 2.2.10)
|
||||
# spec file for package apache2 (Version 2.2.11)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -61,9 +61,9 @@ BuildRequires: expat-devel
|
||||
%define platform_string Linux/%VENDOR
|
||||
License: The Apache Software License
|
||||
Group: Productivity/Networking/Web/Servers
|
||||
%define realver 2.2.10
|
||||
Version: 2.2.10
|
||||
Release: 2
|
||||
%define realver 2.2.11
|
||||
Version: 2.2.11
|
||||
Release: 1
|
||||
#Source0: http://www.apache.org/dist/httpd-%{version}.tar.bz2
|
||||
Source0: http://httpd.apache.org/dev/dist/httpd-%{realver}.tar.bz2
|
||||
Source10: SUSE-NOTICE
|
||||
@ -902,8 +902,6 @@ mv $RPM_BUILD_ROOT/%{sysconfdir}/original .
|
||||
%files example-pages
|
||||
%defattr(-,root,root)
|
||||
%config(noreplace) %{htdocsdir}/index.htm*
|
||||
%config(noreplace) %{htdocsdir}/apache_*.png
|
||||
%config(noreplace) %{htdocsdir}/apache_*.gif
|
||||
%config(noreplace) %{htdocsdir}/favicon.ico
|
||||
%config(noreplace) %{htdocsdir}/robots.txt
|
||||
|
||||
@ -1031,6 +1029,59 @@ if ! test -f /.buildenv; then
|
||||
fi
|
||||
|
||||
%changelog
|
||||
* Sat Dec 20 2008 poeml@suse.de
|
||||
- update to 2.2.11:
|
||||
core:
|
||||
- Worker MPM: Crosscheck that idle workers are still available
|
||||
before using them and thus preventing an overflow of the
|
||||
worker queue which causes a SegFault. PR 45605
|
||||
- Add ap_timeout_parameter_parse to public API.
|
||||
- When the ap_http_header_filter processes an error bucket,
|
||||
cleanup the passed brigade before returning AP_FILTER_ERROR
|
||||
down the filter chain. This unambiguously ensures the same
|
||||
error bucket isn't revisited
|
||||
- Error responses set by filters were being coerced into 500
|
||||
errors, sometimes appended to the original error response. Log
|
||||
entry of: 'Handler for (null) returned invalid result code -3'
|
||||
- configure: Don't reject libtool 2.x PR 44817
|
||||
- Build: Correctly set SSL_LIBS during openssl detection if
|
||||
pkgconfig is not available. PR 46018
|
||||
mod_autoindex:
|
||||
- add configuration option to insert string in HTML HEAD (IndexHeadInsert).
|
||||
mod_cache:
|
||||
- Convert age of cached object to seconds before comparing it to
|
||||
age supplied by the request when checking whether to send a
|
||||
Warning header for a stale response. PR 39713.
|
||||
mod_expires:
|
||||
- Do not sets negative max-age / Expires header in the past. PR 39774
|
||||
mod_info:
|
||||
- Was displaying the wrong value for the KeepAliveTimeout value.
|
||||
mod_log_config:
|
||||
- Add new LogFormat parameter, %%k, which logs the number of
|
||||
keepalive requests on this connection for this request. PR 45762
|
||||
mod_proxy:
|
||||
- Add the possibility to set the worker parameters
|
||||
connectiontimeout and ping in milliseconds.
|
||||
- Prevent segmentation faults by correctly adjusting the
|
||||
lifetime of the buckets read from the proxy backend. PR 45792
|
||||
mod_proxy_ajp:
|
||||
- Do not fail if response data is sent before all request
|
||||
data is read. PR 45911
|
||||
- Fix wrongly formatted requests where client sets
|
||||
Content-Length header, but doesn't provide a body. Servlet
|
||||
container always expects that next packet is body whenever C-L
|
||||
is present in the headers. This can lead to wrong
|
||||
interpretation of the packets. In this case send the empty
|
||||
body packet, so container can deal with that.
|
||||
mod_proxy_balancer:
|
||||
- Add in forced recovery for balancer members if
|
||||
all are in error state.
|
||||
mod_rewrite:
|
||||
- Export and install the mod_rewrite.h header to ensure the optional
|
||||
rewrite_mapfunc_t and ap_register_rewrite_mapfunc functions are
|
||||
available to third party modules.
|
||||
* Wed Dec 17 2008 poeml@suse.de
|
||||
- remove mod_authn_dbm and mod_suexec from the default module list.
|
||||
* Fri Nov 21 2008 skh@suse.de
|
||||
- apache2-server-tuning.conf:
|
||||
Enclose module-specific configuration in IfModule tags [bnc#440584]
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:681d5787288e4e527877f415acce198be96ce7de0dc6e354646b1df4aae21383
|
||||
size 5068069
|
3
httpd-2.2.11.tar.bz2
Normal file
3
httpd-2.2.11.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5ce34825c5b84d1808605a22f8d16d44c6f91882a538bb98a3affed8f5dff6fe
|
||||
size 5230130
|
@ -72,7 +72,7 @@ APACHE_CONF_INCLUDE_DIRS=""
|
||||
# apache's default installation
|
||||
# APACHE_MODULES="authz_host actions alias asis auth autoindex cgi dir imap include log_config mime negotiation setenvif status userdir"
|
||||
# your settings
|
||||
APACHE_MODULES="actions alias auth_basic authn_file authz_host authz_groupfile authz_default authz_user authn_dbm autoindex cgi dir env expires include log_config mime negotiation setenvif ssl suexec userdir php5"
|
||||
APACHE_MODULES="actions alias auth_basic authn_file authz_host authz_groupfile authz_default authz_user autoindex cgi dir env expires include log_config mime negotiation setenvif ssl userdir php5"
|
||||
|
||||
|
||||
## Type: string
|
||||
|
Loading…
Reference in New Issue
Block a user