CVS log for ports/www/apache22/distinfo
Up to [FreeBSD] / ports / www / apache22
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.87: download - view: text, markup, annotated - select for diffs
Wed Feb 1 18:56:08 2012 UTC (9 days, 4 hours ago) by jgh
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.86: preferred, colored
Changes since revision 1.86: +2 -2 lines
- Update to 2.2.22
Addresses:
* SECURITY: CVE-2011-3607 (cve.mitre.org)
Integer overflow in the ap_pregsub function in server/util.c in the Apache HTTP
Server 2.0.x through 2.0.64 and 2.2.x through 2.2.21, when the mod_setenvif
module is enabled, allows local users to gain privileges via a .htaccess file
with a crafted SetEnvIf directive, in conjunction with a crafted HTTP request
header, leading to a heap-based buffer overflow.
* SECURITY: CVE-2012-0021 (cve.mitre.org)
The log_cookie function in mod_log_config.c in the mod_log_config module in the
Apache HTTP Server 2.2.17 through 2.2.21, when a threaded MPM is used, does not
properly handle a %{}C format string, which allows remote attackers to cause a
denial of service (daemon crash) via a cookie that lacks both a name and a
value.
* SECURITY: CVE-2012-0031 (cve.mitre.org)
scoreboard.c in the Apache HTTP Server 2.2.21 and earlier might allow local
users to cause a denial of service (daemon crash during shutdown) or possibly
have unspecified other impact by modifying a certain type field within a
scoreboard shared memory segment, leading to an invalid call to the free
function.
* SECURITY: CVE-2011-4317 (cve.mitre.org)
The mod_proxy module in the Apache HTTP Server 1.3.x through 1.3.42, 2.0.x
through 2.0.64, and 2.2.x through 2.2.21, when the Revision 1179239 patch is in
place, does not properly interact with use of (1) RewriteRule and (2)
ProxyPassMatch pattern matches for configuration of a reverse proxy, which
allows remote attackers to send requests to intranet servers via a malformed URI
containing an @ (at sign) character and a : (colon) character in invalid
positions. NOTE: this vulnerability exists because of an incomplete fix for
CVE-2011-3368.
* SECURITY: CVE-2012-0053 (cve.mitre.org)
protocol.c in the Apache HTTP Server 2.2.x through 2.2.21 does not properly
restrict header information during construction of Bad Request (aka 400) error
documents, which allows remote attackers to obtain the values of HTTPOnly
cookies via vectors involving a (1) long or (2) malformed header in conjunction
with crafted web script.
* SECURITY: CVE-2011-3368 (cve.mitre.org)
The mod_proxy module in the Apache HTTP Server 1.3.x through 1.3.42, 2.0.x
through 2.0.64, and 2.2.x through 2.2.21 does not properly interact with use of
(1) RewriteRule and (2) ProxyPassMatch pattern matches for configuration of a
reverse proxy, which allows remote attackers to send requests to intranet
servers via a malformed URI containing an initial @ (at sign) character.
PR: ports/164675
Reviewed by: pgollucci
Approved by: pgollucci, crees, rene (mentors, implicit)
With Hat: apache@
Revision 1.86: download - view: text, markup, annotated - select for diffs
Thu Sep 15 05:00:28 2011 UTC (4 months, 3 weeks ago) by ohauer
Branches: MAIN
CVS tags: RELEASE_9_0_0
Diff to: previous 1.85: preferred, colored
Changes since revision 1.85: +2 -2 lines
- update to version 2.2.21 Addresses: * SECURITY: CVE-2011-3348 (cve.mitre.org) mod_proxy_ajp when combined with mod_proxy_balancer: Prevents unrecognized HTTP methods from marking ajp: balancer members in an error state, avoiding denial of service. * SECURITY: CVE-2011-3192 (cve.mitre.org) core: Further fixes to the handling of byte-range requests to use less memory, to avoid denial of service. This patch includes fixes to the patch introduced in release 2.2.20 for protocol compliance, as well as the MaxRanges directive. PR: ports/160743 Submitted by: Jason Helfman <jhelfman@experts-exchange.com>
Revision 1.85: download - view: text, markup, annotated - select for diffs
Fri Sep 2 06:18:02 2011 UTC (5 months, 1 week ago) by ade
Branches: MAIN
Diff to: previous 1.84: preferred, colored
Changes since revision 1.84: +2 -2 lines
Emergency upgrade to 2.2.20 - CVE-2011-3192. Any complaints, talk to me. PR: 160381
Revision 1.84: download - view: text, markup, annotated - select for diffs
Sun May 22 21:33:31 2011 UTC (8 months, 2 weeks ago) by ohauer
Branches: MAIN
Diff to: previous 1.83: preferred, colored
Changes since revision 1.83: +2 -2 lines
- update to httpd-2.2.19 Changes with Apache 2.2.19 *) Revert ABI breakage in 2.2.18 caused by the function signature change of ap_unescape_url_keep2f(). This release restores the signature from 2.2.17 and prior, and introduces ap_unescape_url_keep2f_ex(). [Eric Covener] commit with hat apache@
Revision 1.83: download - view: text, markup, annotated - select for diffs
Fri May 13 23:02:38 2011 UTC (8 months, 4 weeks ago) by ohauer
Branches: MAIN
Diff to: previous 1.82: preferred, colored
Changes since revision 1.82: +2 -2 lines
- update to version 2.2.18 Changes: http://www.apache.org/dist/httpd/CHANGES_2.2.18 Changes with Apache 2.2.18 *) Log an error for failures to read a chunk-size, and return 408 instead 413 when this is due to a read timeout. This change also fixes some cases of two error documents being sent in the response for the same scenario. [Eric Covener] PR49167 *) core: Only log a 408 if it is no keepalive timeout. PR 39785 [Ruediger Pluem, Mark Montague <markmont umich.edu>] *) core: Treat timeout reading request as 408 error, not 400. Log 408 errors in access log as was done in Apache 1.3.x. PR 39785 [Nobutaka Mantani <nobutaka nobutaka.org>, Stefan Fritsch, Dan Poirier] *) Core HTTP: disable keepalive when the Client has sent Expect: 100-continue but we respond directly with a non-100 response. Keepalive here led to data from clients continuing being treated as a new request. PR 47087. [Nick Kew] *) htpasswd: Change the default algorithm for htpasswd to MD5 on all platforms. Crypt with its 8 character limit is not useful anymore; improve out of disk space handling (PR 30877); print a warning if a password is truncated by crypt. [Stefan Fritsch] *) mod_win32: Added shebang check for '! so that .vbs scripts work as CGI. Win32's cscript interpreter can only use a single quote as comment char. [Guenter Knauf] *) configure: Fix htpasswd/htdbm libcrypt link errors with some newer linkers. [Stefan Fritsch] *) MinGW build improvements. PR 49535. [John Vandenberg <jayvdb gmail.com>, Jeff Trawick] *) mod_ssl, ab: Support OpenSSL compiled without SSLv2 support. [Stefan Fritsch] *) core: AllowEncodedSlashes new option NoDecode to allow encoded slashes in request URL path info but not decode them. PR 35256, PR 46830. [Dan Poirier] *) mod_rewrite: Allow to unset environment variables. PR 50746. [Rainer Jung] *) suEXEC: Add Suexec directive to disable suEXEC without renaming the binary (Suexec Off), or force startup failure if suEXEC is required but not supported (Suexec On). [Jeff Trawick] *) mod_proxy: Put the worker in error state if the SSL handshake with the backend fails. PR 50332. [Daniel Ruggeri <DRuggeri primary.net>, Ruediger Pluem] *) prefork: Update MPM state in children during a graceful restart. Allow the HTTP connection handling loop to terminate early during a graceful restart. PR 41743. [Andrew Punch <andrew.punch 247realmedia.com>] *) mod_ssl: Correctly read full lines in input filter when the line is incomplete during first read. PR 50481. [Ruediger Pluem] *) mod_autoindex: Merge IndexOptions from server to directory context when the directory has no mod_autoindex directives. PR 47766. [Eric Covener] *) mod_cache: Make sure that we never allow a 304 Not Modified response that we asked for to leak to the client should the 304 response be uncacheable. PR45341 [Graham Leggett] *) mod_dav: Send 400 error if malformed Content-Range header is received for a put request (RFC 2616 14.16). PR 49825. [Stefan Fritsch] *) mod_userdir: Add merging of enable, disable, and filename arguments to UserDir directive, leaving enable/disable of userlists unmerged. PR 44076 [Eric Covener] *) core: Honor 'AcceptPathInfo OFF' during internal redirects, such as per-directory mod_rewrite substitutions. PR 50349. [Eric Covener] *) mod_cache: Check the request to determine whether we are allowed to return cached content at all, and respect a "Cache-Control: no-cache" header from a client. Previously, "no-cache" would behave like "max-age=0". [Graham Leggett] *) mod_mem_cache: Add a debug msg when a streaming response exceeds MCacheMaxStreamingBuffer, since mod_cache will follow up with a scary 'memory allocation failed' debug message. PR 49604. [Eric Covener] *) proxy_connect: Don't give up in the middle of a CONNECT tunnel when the child process is starting to exit. PR50220. [Eric Covener] PR: 156997 Submitted by: Tsurutani Naoki <turutani _at_ scphys.kyoto-u.ac.jp>
Revision 1.82: download - view: text, markup, annotated - select for diffs
Sat Mar 19 12:33:48 2011 UTC (10 months, 3 weeks ago) by miwi
Branches: MAIN
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +0 -1 lines
- Get Rid MD5 support
Revision 1.81: download - view: text, markup, annotated - select for diffs
Wed Oct 20 21:04:58 2010 UTC (15 months, 3 weeks ago) by pgollucci
Branches: MAIN
CVS tags: RELEASE_8_2_0, RELEASE_7_4_0, RELEASE_6_EOL
Diff to: previous 1.80: preferred, colored
Changes since revision 1.80: +3 -3 lines
- Update to 2.2.17 ** * Note, no CVE affects the FREEBSD port. devel/apr1 was updated to * apr-util 1.3.10 on 2010/10/06 05:32:24. ** Changes: http://www.apache.org/dist/httpd/CHANGES_2.2 PR: ports/151594 Submitted by: Tsurutani Naoki <turutani@scphys.kyoto-u.ac.jp> With Hat: apache@ <ChangeLog> *) prefork MPM: Run cleanups for final request when process exits gracefully to work around a flaw in apr-util. PR 43857. [Tom Donovan] *) mod_reqtimeout: Do not wrongly enforce timeouts for mod_proxy's backend connections and other protocol handlers (like mod_ftp). Enforce the timeout for AP_MODE_GETLINE. If there is a timeout, shorten the lingering close time from 30 to 2 seconds. [Stefan Fritsch] *) Proxy balancer: support setting error status according to HTTP response code from a backend. PR 48939. [Daniel Ruggeri <DRuggeri primary.net>] *) mod_authnz_ldap: If AuthLDAPCharsetConfig is set, also convert the password to UTF-8. PR 45318. [Johannes Müller <joh_m gmx.de>, Stefan Fritsch] *) core: check symlink ownership if both FollowSymlinks and SymlinksIfOwnerMatch are set [Nick Kew] *) core: fix origin checking in SymlinksIfOwnerMatch PR 36783 [Robert L Mathews <rob-apache.org.bugs tigertech.net>] *) mod_headers: Enable multi-match-and-replace edit option PR 46594 [Nick Kew] *) mod_log_config: Make ${cookie}C correctly match whole cookie names instead of substrings. PR 28037. [Dan Franklin <dan dan-franklin.com>, Stefan Fritsch] *) mod_dir, mod_negotiation: Pass the output filter information to newly created sub requests; as these are later on used as true requests with an internal redirect. This allows for mod_cache et.al. to trap the results of the redirect. PR 17629, 43939 [Dirk-Willem van Gulik, Jim Jagielski, Joe Orton, Ruediger Pluem] *) rotatelogs: Fix possible buffer overflow if admin configures a mongo log file path. [Jeff Trawick] *) mod_ssl: Do not do overlapping memcpy. PR 45444 [Joe Orton] *) vhost: A purely-numeric Host: header should not be treated as a port. PR 44979 [Nick Kew] *) core: (re)-introduce -T commandline option to suppress documentroot check at startup. PR 41887 [Jan van den Berg <janvdberg gmail.com>] </ChangeLog>
Revision 1.80: download - view: text, markup, annotated - select for diffs
Mon Jul 26 01:28:40 2010 UTC (18 months, 2 weeks ago) by kuriyama
Branches: MAIN
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +3 -3 lines
- Upgrade to 2.2.16.
Security: CVE-2010-1452 (mod_{cache,dev} remote DoS),
CVE-2010-2068 (mod_{proxy_{ajp,http},reqtimeout} related on some platforms)
Revision 1.79: download - view: text, markup, annotated - select for diffs
Wed May 5 21:43:29 2010 UTC (21 months, 1 week ago) by pgollucci
Branches: MAIN
CVS tags: RELEASE_8_1_0
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +3 -3 lines
2/5: Update to httpd 2.2.15, default to using devel/apr instead of bundled apr PR: ports/146130 Approved by: portmgr (pav) Tested by: -exp run (pav) With Hat: apache@
Revision 1.78: download - view: text, markup, annotated - select for diffs
Wed Dec 9 23:48:01 2009 UTC (2 years, 2 months ago) by pgollucci
Branches: MAIN
CVS tags: RELEASE_7_3_0
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +3 -3 lines
- Update to 2.2.14 - With hat apache@ Note: The 3 CVE's are a no-op for the FreeBSD port -- date: 2009/08/25 05:33:03; author: kuriyama; state: Exp; lines: +0 -0 (Forced commit) - 2.2.13 (acutally 2.2.12) includes fixes for several CVEs. [1] but in our ports tree, APR related ones (CVE-2009-0023, CVE-2009-1955, CVE-2009-1956) were already backported in 2.2.11_5. References: http://www.apache.org/dist/httpd/CHANGES_2.2.12 [1] Changes: --------- *) SECURITY: CVE-2009-2699 (cve.mitre.org) Fixed in APR 1.3.9. Faulty error handling in the Solaris pollset support (Event Port backend) which could trigger hangs in the prefork and event MPMs on that platform. PR 47645. [Jeff Trawick] *) SECURITY: CVE-2009-3095 (cve.mitre.org) mod_proxy_ftp: sanity check authn credentials. [Stefan Fritsch <sf fritsch.de>, Joe Orton] *) SECURITY: CVE-2009-3094 (cve.mitre.org) mod_proxy_ftp: NULL pointer dereference on error paths. [Stefan Fritsch <sf fritsch.de>, Joe Orton] *) mod_proxy_scgi: Backport from trunk. [André Malo] *) mod_ldap: Don't try to resolve file-based user ids to a DN when AuthLDAPURL has been defined at a very high level. PR 45946. [Eric Covener] *) htcacheclean: 19 ways to fail, 1 error message. Fixed. [Graham Leggett] *) mod_ldap: Bring the LDAPCacheEntries and LDAPOpCacheEntries usage() in synch with the manual and the implementation (0 and -1 both disable the cache). [Eric Covener] *) mod_ssl: The error message when SSLCertificateFile is missing should at least give the name or position of the problematic virtual host definition. [Stefan Fritsch sf sfritsch.de] *) htdbm: Fix possible buffer overflow if dbm database has very long values. PR 30586 [Dan Poirier] *) Add support for HTTP PUT to ab. [Jeff Barnes <jbarnesweb yahoo.com>] *) mod_ssl: Fix SSL_*_DN_UID variables to use the 'userID' attribute type. PR 45107. [Michael Ströder <michael stroeder.com>, Peter Sylvester <peter.sylvester edelweb.fr>] *) mod_cache: Add CacheIgnoreURLSessionIdentifiers directive to ignore defined session identifiers encoded in the URL when caching. [Ruediger Pluem] *) mod_mem_cache: fix seg fault under load due to pool concurrency problem PR: 47672 [Dan Poirier <poirier pobox.com>] *) mod_autoindex: Correctly create an empty cell if the description for a file is missing. PR 47682 [Peter Poeml <poeml suse.de>]
Revision 1.77: download - view: text, markup, annotated - select for diffs
Tue Aug 25 04:58:53 2009 UTC (2 years, 5 months ago) by kuriyama
Branches: MAIN
CVS tags: RELEASE_8_0_0
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +3 -3 lines
- Upgrade to 2.2.13. PR: ports/137651 Submitted by: Tsurutani Naoki <turutani@scphys.kyoto-u.ac.jp>
Revision 1.76: download - view: text, markup, annotated - select for diffs
Mon Dec 15 22:05:56 2008 UTC (3 years, 1 month ago) by clement
Branches: MAIN
CVS tags: RELEASE_7_2_0
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +3 -3 lines
PR:
Submitted by:
Reviewed by:
Approved by:
Obtained from:
MFC after:
Security:
- Update to 2.2.11
- Always depend on pcre from ports [1]
- Fix plist with LDAP/without apr-util DSO
- source envvars as late as possible [2]
Requested by: ale
Eygene Ryabinkin <rea-fbsd at codelabs dot ru> [2]
PR: ports/127418 [2]
Revision 1.75: download - view: text, markup, annotated - select for diffs
Mon Jun 23 21:11:14 2008 UTC (3 years, 7 months ago) by clement
Branches: MAIN
CVS tags: RELEASE_7_1_0, RELEASE_6_4_0
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +3 -3 lines
- Update to 2.2.9 - Add a note to UPDATING about the forced build of subversion because of apr/apu bumped version.
Revision 1.74: download - view: text, markup, annotated - select for diffs
Sun Jan 20 11:29:31 2008 UTC (4 years ago) by clement
Branches: MAIN
CVS tags: RELEASE_5_EOL
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +3 -6 lines
- Update to 2.2.8 - Update documentation - Use BDB from bsd.databases.mk instead of homebrew [1] PR: ports/119711 [1] Submitted by: mm [1]
Revision 1.73: download - view: text, markup, annotated - select for diffs
Sun Sep 9 14:55:16 2007 UTC (4 years, 5 months ago) by clement
Branches: MAIN
CVS tags: RELEASE_7_0_0, RELEASE_6_3_0
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +6 -6 lines
- Update to 2.2.6 - Fix restart when profiles are used [1] Submitted by: Jarrod Sayers <jarrod at netleader dot com dot au>
Revision 1.72: download - view: text, markup, annotated - select for diffs
Sat Jan 13 12:13:11 2007 UTC (5 years ago) by clement
Branches: MAIN
CVS tags: RELEASE_4_EOL, PRE_XORG_7
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +3 -3 lines
- Update to 2.2.4 - Add dumpio module - Fix rcorder [1] PR: ports/106429 [1] Submitted by: Dmitry Pryanishnikov <dmitry@atlantis.dp.ua> [1]
Revision 1.71: download - view: text, markup, annotated - select for diffs
Sun Nov 5 10:49:17 2006 UTC (5 years, 3 months ago) by clement
Branches: MAIN
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +3 -3 lines
- Update MySQL apr_dbd to rev 57 - Add support for itk mpm - Update doc [1] Reported by: Volodymyr Kostyrko <arcade@synergetica.dn.ua> [1]
Revision 1.70: download - view: text, markup, annotated - select for diffs
Mon Aug 7 17:10:39 2006 UTC (5 years, 6 months ago) by clement
Branches: MAIN
CVS tags: RELEASE_6_2_0
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +3 -3 lines
- Fix apr_dbd_mysql stuff. Pointyhat to: clement Spotted by: Sean McNeil <sean@mcneil.com>
Revision 1.69: download - view: text, markup, annotated - select for diffs
Sat Aug 5 20:37:22 2006 UTC (5 years, 6 months ago) by clement
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +3 -3 lines
- Update to 2.2.3 - Update apr_dbd to latest version [1] - Add forgotten mod_authn_alias [2] Spotted by: Jim Riggs <freebsd-lists@jimandlissa.com> [1] Alexander Wittig <alexander@wittig.name> [2
Revision 1.68: download - view: text, markup, annotated - select for diffs
Mon May 1 09:07:27 2006 UTC (5 years, 9 months ago) by clement
Branches: MAIN
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +3 -3 lines
- Update to 2.2.2 - Enable mod_version by default
Revision 1.67: download - view: text, markup, annotated - select for diffs
Sun Dec 25 18:58:05 2005 UTC (6 years, 1 month ago) by clement
Branches: MAIN
CVS tags: RELEASE_6_1_0, RELEASE_5_5_0
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +0 -3 lines
- remove useless powerlogo.gif
Revision 1.66: download - view: text, markup, annotated - select for diffs
Tue Dec 13 22:26:57 2005 UTC (6 years, 1 month ago) by clement
Branches: MAIN
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +3 -0 lines
- Fix envvars.d [1] - Add apache22_http_accept_enable to load accf_http kernel module [2] Additionnally, if it's not defined, we drop accept filter support - Drop obsolete apache22ssl_enable rc.conf option - Sync apache22.sh behavior with apachectl Add graceful and graceful-stop targets - Rework categories (add CACHE_MODULES) - Add support for apr_dbd: MySQL, PostgrSQL and SQLite3 backends are supported It adds mod_auth_dbd and mod_dbd automatically more fixes to come soon... PR: ports/90309 [1], ports/90103 [2] Submitted by: Simun Mikecin <sime@data.home.hr> [1], Melvyn Sopacua <melvyn@melvyn.homeunix.net> [2]
Revision 1.65: download - view: text, markup, annotated - select for diffs
Sat Dec 3 22:02:58 2005 UTC (6 years, 2 months ago) by clement
Branches: MAIN
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +6 -6 lines
- Add apache 2.2.0
It's a temporary layout, I need more time to find the best.
note that ${PREFIX}/www/(data|errors|cgi)(-dist) disappeared in favor of
${PREFIX}/www/apache22
Revision 1.64: download - view: text, markup, annotated - select for diffs
Wed Nov 30 00:13:39 2005 UTC (6 years, 2 months ago) by pav
Branches: MAIN
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +4 -2 lines
- Update to 2.1.9 PR: ports/88707 Submitted by: dikshie <dikshie@lapi.itb.ac.id> Approved by: maintainer timeout (clement; 3 weeks)
Revision 1.63: download - view: text, markup, annotated - select for diffs
Sun Oct 30 20:39:04 2005 UTC (6 years, 3 months ago) by clement
Branches: MAIN
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +2 -2 lines
- Update to 2.1.8 Not all new cool stuff is supported but it will be when 2.2.0 comes out.
Revision 1.62: download - view: text, markup, annotated - select for diffs
Thu Mar 17 20:32:44 2005 UTC (6 years, 10 months ago) by clement
Branches: MAIN
CVS tags: old_RELEASE_6_0_0, old_RELEASE_5_4_0
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +2 -2 lines
- Update to 2.1.4 Once more, you have to rebuild all apache modules.
Revision 1.61: download - view: text, markup, annotated - select for diffs
Wed Feb 23 10:59:45 2005 UTC (6 years, 11 months ago) by clement
Branches: MAIN
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +2 -2 lines
- Update to 2.1.3 If you can't fetch the distfile, fetch http://httpd.apache.org/dev/dist/httpd-2.1.3-alpha.tar.bz2 into ${PORTSDIR}/distfiles/apache21
Revision 1.60: download - view: text, markup, annotated - select for diffs
Sat Dec 11 18:06:04 2004 UTC (7 years, 2 months ago) by clement
Branches: MAIN
CVS tags: old_RELEASE_4_11_0
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +4 -2 lines
- Add apache 2.1.2 This is a development version, awaiting for 2.2
Revision 1.59
Wed Mar 17 08:41:58 2004 UTC (7 years, 10 months ago) by clement
Branches: MAIN
FILE REMOVED
Changes since revision 1.58: +0 -0 lines
- Move apache21 to Attic. Will be back soon ;-) Suggested by: kris
Revision 1.58: download - view: text, markup, annotated - select for diffs
Wed Oct 29 22:46:45 2003 UTC (8 years, 3 months ago) by trevor
Branches: MAIN
CVS tags: old_RELEASE_5_2_1, old_RELEASE_5_2_0
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +2 -2 lines
Update to 2.0.48, which has corrections for two security bugs: - CAN-2003-0789: information leak in mod_cgid <URL:http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2003-0789> - CAN-2003-0542: buffer overflow in mod_alias and mod_rewrite <URL:http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2003-0542> Use a DIST_SUBDIR. Use the DOCSDIR macro. Add options: HTTP_PORT, IPV6_V6ONLY, NO_CGI, NO_ERROR, NO_ICONS, NO_WWW, NO_WWWDATA, WITHOUT_AUTH, WITHOUT_DAV, WITHOUT_MODULES, WITHOUT_MODULES, WITHOUT_PROXY, WITH_ALL_STATIC_APACHE, WITH_BERKELEYDB, WITH_CUSTOM_AUTH, WITH_CUSTOM_PROXY, WITH_DBM, WITH_EXTRA_MODULES, WITH_MODULES, WITH_MPM, WITH_STATIC_APACHE, WITH_STATIC_MODULES and WITH_STATIC_SUPPORT PR: 58654 Submitted by: Clement Laforet (maintainer)
Revision 1.57: download - view: text, markup, annotated - select for diffs
Wed Jul 9 15:31:40 2003 UTC (8 years, 7 months ago) by cy
Branches: MAIN
CVS tags: old_old_RELEASE_4_9_0
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +1 -1 lines
Update 2.0.46 --> 2.0.47 Approved by: MAINTAINER (dominic.marks@btinternet.com) Notified by: striker@apache.org on announce@apache.org
Revision 1.56: download - view: text, markup, annotated - select for diffs
Sun Jun 1 00:09:42 2003 UTC (8 years, 8 months ago) by perky
Branches: MAIN
CVS tags: old_old_RELEASE_5_1_0
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +1 -1 lines
[SECURITY FIX] Update to 2.0.46 See vulnerability details at: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2003-0245 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2003-0189 PR: 52768 [1] Submitted by: Xin Li <delphij@freebsdchina.org> [1], Miguel Mendez <flynn@energyhq.es.eu.org>, Trevor Johnson <trevor@FreeBSD.org>, Mark Gooderum <mark@verniernetworks.com>, John Walsh <zed@maths.tcd.ie>
Revision 1.55: download - view: text, markup, annotated - select for diffs
Fri Apr 4 02:36:57 2003 UTC (8 years, 10 months ago) by perky
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +1 -1 lines
Update to 2.0.45. This update fixes a DDOS vulnerability. PR: 50564 [1] Submitted by: Cy Schubert <cy@FreeBSD.org>, delphij@hotmail.com [1] Requested by: many
Revision 1.54: download - view: text, markup, annotated - select for diffs
Tue Jan 21 17:54:18 2003 UTC (9 years ago) by perky
Branches: MAIN
CVS tags: old_old_RELEASE_4_8_0
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +1 -1 lines
Update to 2.0.44 New knob IPV6_V6ONLY=yes disables accepting v4 connection via v4-mapped v6 socket.
Revision 1.53: download - view: text, markup, annotated - select for diffs
Sat Oct 5 09:18:45 2002 UTC (9 years, 4 months ago) by kris
Branches: MAIN
CVS tags: old_old_RELEASE_5_0_0, old_old_RELEASE_4_7_0
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +1 -1 lines
Update to apache 1.3.27 and 2.0.43. This fixes a security vulnerability. Mark apache13-ssl FORBIDDEN because the new version does not yet exist. Partially based on patches submitted by below authors. Submitted by: "Sergey A. Osokin" <osa@freebsd.org.ru>, Udo Schweigert <udo.schweigert@siemens.com>, Lev A. Serebryakov <lev@serebryakov.spb.ru> PR: ports/43682, ports/43688, ports/43666, ports/43681
Revision 1.52: download - view: text, markup, annotated - select for diffs
Wed Sep 25 16:42:24 2002 UTC (9 years, 4 months ago) by perky
Branches: MAIN
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +1 -1 lines
Update to 2.0.42 Approved by: will (portmgr)
Revision 1.51: download - view: text, markup, annotated - select for diffs
Sat Aug 10 00:56:51 2002 UTC (9 years, 6 months ago) by perky
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +1 -1 lines
Update to 2.0.40
Revision 1.50: download - view: text, markup, annotated - select for diffs
Tue Jun 18 23:02:04 2002 UTC (9 years, 7 months ago) by pat
Branches: MAIN
CVS tags: old_old_RELEASE_4_6_2, old_old_RELEASE_4_6_1
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +1 -1 lines
- Update to 2.0.39, the emergency security update. - Unmark FORBIDDEN PR: ports/39477 Submitted by: maintainer
Revision 1.49: download - view: text, markup, annotated - select for diffs
Thu May 9 03:55:18 2002 UTC (9 years, 9 months ago) by cy
Branches: MAIN
CVS tags: old_old_RELEASE_4_6_0
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +1 -1 lines
1. Upgrade 2.0.35 --> 2.0.36
2. Port printed message to "pw userdel www" if port removed permanently.
However master.passwd 1.25.2.5 has user www by default, so this is no
longer correct advice. Removed pkg-deinstall to correct this.
PR: 37849 and 36907
Approved by: MAINTAINER: Hye-Shik Chang <perky@fallin.lv>
Revision 1.48: download - view: text, markup, annotated - select for diffs
Mon Apr 8 06:45:26 2002 UTC (9 years, 10 months ago) by pat
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +1 -1 lines
Update to 2.0.35 (first GA release!) PR: 36834 Submitted by: maintainer
Revision 1.47: download - view: text, markup, annotated - select for diffs
Sat Mar 23 08:31:54 2002 UTC (9 years, 10 months ago) by pat
Branches: MAIN
CVS tags: old_old_RELEASE_5_0_DP1
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +2 -2 lines
Update to 2.0.32 PR: 36040 Submitted by: maintainer
Revision 1.46: download - view: text, markup, annotated - select for diffs
Fri Nov 23 05:03:13 2001 UTC (10 years, 2 months ago) by dwcjr
Branches: MAIN
CVS tags: old_old_RELEASE_4_5_0
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +1 -0 lines
Fix a problem that apache release can't detach from launcher's terminal PR: 32208 Submitted by: maintainer Pointed out by: Jos Backus <josb@cncdsl.com>
Revision 1.45: download - view: text, markup, annotated - select for diffs
Mon Nov 19 22:47:46 2001 UTC (10 years, 2 months ago) by dwcjr
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +1 -1 lines
Update to 2.0.28 PR: 32043 Submitted by: maintainer
Revision 1.44: download - view: text, markup, annotated - select for diffs
Fri Apr 13 04:43:47 2001 UTC (10 years, 10 months ago) by will
Branches: MAIN
CVS tags: old_old_RELEASE_4_4_0, old_old_RELEASE_4_3_0
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +1 -1 lines
Bring in Apache 2.0.16-beta. Just in time for the release... PR: 26410 Submitted by: Chang, Hye-Shik <perky@python.or.kr> Repocopied by: asami
Revision 1.43: download - view: text, markup, annotated - select for diffs
Tue Mar 6 22:51:34 2001 UTC (10 years, 11 months ago) by ache
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +1 -2 lines
Upgrade to 1.3.19
Revision 1.42: download - view: text, markup, annotated - select for diffs
Mon Feb 12 16:19:19 2001 UTC (11 years ago) by ache
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +1 -0 lines
Add official fix for RewriteMap bug
Revision 1.41: download - view: text, markup, annotated - select for diffs
Tue Jan 30 11:55:00 2001 UTC (11 years ago) by ache
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +1 -2 lines
Upgrade to 1.3.17
Revision 1.40: download - view: text, markup, annotated - select for diffs
Wed Dec 27 22:47:56 2000 UTC (11 years, 1 month ago) by ache
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +1 -0 lines
Add official mod_rewrite fix
Revision 1.39: download - view: text, markup, annotated - select for diffs
Sat Oct 14 07:00:09 2000 UTC (11 years, 4 months ago) by ache
Branches: MAIN
CVS tags: old_old_RELEASE_4_2_0
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +1 -1 lines
Upgrade to 1.3.14
Revision 1.38: download - view: text, markup, annotated - select for diffs
Sat Feb 26 10:35:11 2000 UTC (11 years, 11 months ago) by ache
Branches: MAIN
CVS tags: old_old_RELEASE_4_1_1, old_old_RELEASE_4_1_0, old_old_RELEASE_4_0_0, old_old_RELEASE_3_5_0
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +1 -2 lines
upgrade to 1.3.12
Revision 1.37: download - view: text, markup, annotated - select for diffs
Wed Feb 2 21:14:22 2000 UTC (12 years ago) by ache
Branches: MAIN
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +1 -0 lines
Add official cross side scripting security patch
Revision 1.36: download - view: text, markup, annotated - select for diffs
Mon Jan 24 17:58:26 2000 UTC (12 years ago) by ache
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +1 -1 lines
upgrade to 1.3.11
Revision 1.35: download - view: text, markup, annotated - select for diffs
Fri Sep 3 16:07:34 1999 UTC (12 years, 5 months ago) by ache
Branches: MAIN
CVS tags: old_old_RELEASE_3_4_0, old_old_RELEASE_3_3_0
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +1 -1 lines
upgrade to 1.3.9
Revision 1.34: download - view: text, markup, annotated - select for diffs
Thu Mar 25 22:25:55 1999 UTC (12 years, 10 months ago) by ache
Branches: MAIN
CVS tags: old_old_RELEASE_3_2_0
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +1 -1 lines
upgrade to 1.3.6
Revision 1.33: download - view: text, markup, annotated - select for diffs
Fri Jan 15 00:26:25 1999 UTC (13 years ago) by ache
Branches: MAIN
CVS tags: old_old_RELEASE_3_1_0
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +1 -1 lines
upgrade to 1.3.4
Revision 1.32: download - view: text, markup, annotated - select for diffs
Mon Oct 19 12:48:57 1998 UTC (13 years, 3 months ago) by smace
Branches: MAIN
CVS tags: old_old_RELEASE_2_2_8
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +1 -1 lines
Upgrade to 1.3.3 Fix module loading under ELF PR: ports/8267 ports/8362
Revision 1.31: download - view: text, markup, annotated - select for diffs
Thu Sep 24 01:06:25 1998 UTC (13 years, 4 months ago) by ache
Branches: MAIN
CVS tags: old_old_RELEASE_3_0_0
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +1 -1 lines
upgrade to 1.3.2
Revision 1.30: download - view: text, markup, annotated - select for diffs
Thu Jul 23 13:16:04 1998 UTC (13 years, 6 months ago) by ache
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +1 -1 lines
Upgrade to 1.3.1
Revision 1.29: download - view: text, markup, annotated - select for diffs
Sat Jun 6 19:09:33 1998 UTC (13 years, 8 months ago) by ache
Branches: MAIN
CVS tags: old_old_RELEASE_2_2_7
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +1 -1 lines
upgrade to 1.3.0
Revision 1.28: download - view: text, markup, annotated - select for diffs
Fri Jun 5 17:16:18 1998 UTC (13 years, 8 months ago) by ache
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +1 -1 lines
upgrade to 1.3b7
Revision 1.27: download - view: text, markup, annotated - select for diffs
Tue Apr 21 21:57:47 1998 UTC (13 years, 9 months ago) by ache
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +1 -1 lines
Upgrade to 1.3b6, now with loadable modules!
Revision 1.26: download - view: text, markup, annotated - select for diffs
Fri Feb 20 11:08:56 1998 UTC (13 years, 11 months ago) by ache
Branches: MAIN
CVS tags: old_old_RELEASE_2_2_6
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +1 -2 lines
Upgrade to 1.3b5
Revision 1.25: download - view: text, markup, annotated - select for diffs
Wed Jan 7 22:19:16 1998 UTC (14 years, 1 month ago) by ache
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +1 -0 lines
Add official patch for //// attack
Revision 1.24: download - view: text, markup, annotated - select for diffs
Fri Nov 21 21:10:25 1997 UTC (14 years, 2 months ago) by ache
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +1 -1 lines
Upgrade to 1.3b3
Revision 1.23: download - view: text, markup, annotated - select for diffs
Wed Oct 22 23:51:33 1997 UTC (14 years, 3 months ago) by ache
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +1 -1 lines
Upgrade to 1.3b2, now with support files and docs installed
Revision 1.22: download - view: text, markup, annotated - select for diffs
Tue Aug 12 18:20:01 1997 UTC (14 years, 6 months ago) by peter
Branches: MAIN
CVS tags: old_old_RELEASE_2_2_5
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +1 -2 lines
Update the repository copied (with history) apache 1.2.1 to 1.3a1 from the original apache-current port.
Revision 1.21: download - view: text, markup, annotated - select for diffs
Tue Jul 8 13:04:19 1997 UTC (14 years, 7 months ago) by ache
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +2 -2 lines
Upgrade to 1.2.1
Revision 1.20: download - view: text, markup, annotated - select for diffs
Fri Jun 6 13:45:15 1997 UTC (14 years, 8 months ago) by ache
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +1 -1 lines
Update to 1.2.0
Revision 1.19: download - view: text, markup, annotated - select for diffs
Sat May 31 20:16:08 1997 UTC (14 years, 8 months ago) by ache
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +2 -2 lines
Upgrade to 1.2b11
Revision 1.18: download - view: text, markup, annotated - select for diffs
Fri May 2 18:22:09 1997 UTC (14 years, 9 months ago) by ache
Branches: MAIN
CVS tags: old_old_RELEASE_2_2_2
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +1 -1 lines
Upgrade to 1.2b10
Revision 1.17: download - view: text, markup, annotated - select for diffs
Mon Apr 14 18:54:34 1997 UTC (14 years, 10 months ago) by ache
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +1 -1 lines
Upgrade to 1.2b8
Revision 1.16: download - view: text, markup, annotated - select for diffs
Wed Feb 26 06:00:51 1997 UTC (14 years, 11 months ago) by ache
Branches: MAIN
CVS tags: old_old_RELEASE_2_2_1
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +1 -1 lines
Update checksum for my dir.patch
Revision 1.15: download - view: text, markup, annotated - select for diffs
Wed Feb 26 01:23:18 1997 UTC (14 years, 11 months ago) by ache
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +2 -2 lines
Upgrade to 1.2b7
Revision 1.14: download - view: text, markup, annotated - select for diffs
Tue Jan 28 05:39:39 1997 UTC (15 years ago) by ache
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -2 lines
Upgrade to 1.2b6
Revision 1.13: download - view: text, markup, annotated - select for diffs
Thu Jan 2 16:40:05 1997 UTC (15 years, 1 month ago) by ache
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +1 -1 lines
Upgrade to 1.2b4
Revision 1.12: download - view: text, markup, annotated - select for diffs
Wed Dec 25 22:53:28 1996 UTC (15 years, 1 month ago) by ache
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +1 -1 lines
Upgrade to 1.2b3 Submitted by: mostly by peter
Revision 1.11: download - view: text, markup, annotated - select for diffs
Wed Dec 11 19:10:06 1996 UTC (15 years, 2 months ago) by ache
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +2 -3 lines
Upgrade to 1.2b2
Revision 1.10: download - view: text, markup, annotated - select for diffs
Thu Nov 7 01:49:51 1996 UTC (15 years, 3 months ago) by ache
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +2 -0 lines
Conditionalize all my patches
Revision 1.9: download - view: text, markup, annotated - select for diffs
Thu Jul 11 11:03:53 1996 UTC (15 years, 7 months ago) by ache
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +1 -2 lines
Upgrade to 1.1.1 OK-ed by: gpalmer
Revision 1.8: download - view: text, markup, annotated - select for diffs
Sun May 19 22:21:50 1996 UTC (15 years, 8 months ago) by ache
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +1 -0 lines
Use mod_env.c to pass environment to CGI instead of local hack
Revision 1.7: download - view: text, markup, annotated - select for diffs
Sun Apr 21 08:54:26 1996 UTC (15 years, 9 months ago) by pst
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +1 -1 lines
Update to Apache 1.0.5 (security fix)
Revision 1.6: download - view: text, markup, annotated - select for diffs
Thu Feb 22 21:55:14 1996 UTC (15 years, 11 months ago) by ache
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +1 -1 lines
Upgrade to 1.0.3
Revision 1.5: download - view: text, markup, annotated - select for diffs
Wed Feb 7 03:15:44 1996 UTC (16 years ago) by jfieber
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +1 -1 lines
Upgrade to 1.0.2.
Revision 1.4: download - view: text, markup, annotated - select for diffs
Sat Dec 2 23:07:22 1995 UTC (16 years, 2 months ago) by jfieber
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +1 -1 lines
Update to 1.0
Revision 1.3: download - view: text, markup, annotated - select for diffs
Sat Sep 23 18:47:50 1995 UTC (16 years, 4 months ago) by pst
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +1 -1 lines
Upgrade apache to 0.8.14, completely restructure port, and list myself as maintainer.
Revision 1.2: download - view: text, markup, annotated - select for diffs
Tue Sep 19 07:03:19 1995 UTC (16 years, 4 months ago) by pst
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +1 -1 lines
Upgrade apache to 0.8.13
Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Mon Aug 28 13:28:45 1995 UTC (16 years, 5 months ago) by jkh
Branches: old_old_APACHE
CVS tags: old_old_apache_0_8_11
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0 lines
Port of the APACHE web server. Submitted by: "Eric L. Hernes" <erich@lodgenet.com>
Revision 1.1: download - view: text, markup, annotated - select for diffs
Mon Aug 28 13:28:45 1995 UTC (16 years, 5 months ago) by jkh
Branches: MAIN
Initial revision
