Martin Matuska
824c07cd0a
Update lighttpd to 1.4.32 (fixes CVE-2012-5533)
...
Feature safe: yes
2012-11-21 14:36:24 +00:00
Doug Barton
9aac569eaa
Move the rc.d scripts of the form *.sh.in to *.in
...
Where necessary add $FreeBSD$ to the file
No PORTREVISION bump necessary because this is a no-op
2012-08-05 23:19:36 +00:00
Martin Matuska
841d09fd18
Add 3rd party remoteuser patch (optional)
...
http://redmine.lighttpd.net/issues/2415
PR: ports/167209
Submitted by: Ryan Steinmetz <rpsfa@rit.edu>
2012-06-16 22:28:41 +00:00
Martin Matuska
e7cf918ea3
Do a configtest before performing a graceful restart
2012-06-16 10:21:47 +00:00
Martin Matuska
988359e810
Alter lighttpd startup script subcommands to behave like the apache script:
...
"reload" now sends a SIGHUP and cycles logfiles
"graceful" now performs a graceful restart
"gracefulstop" now performs a graceful stp
"configtest" now checks the configuration file for correct syntax
Removed subcommand:
"check" (replaced by "configtest")
2012-06-16 09:15:26 +00:00
Martin Matuska
b619ceb1b1
Update to 1.4.31
2012-05-31 17:38:58 +00:00
Ade Lovett
6d726b6c09
Update autoconf to 2.69 and automake to 1.12
...
PR: 166836
Tested by: Multiple -exp runs (pav)
2012-05-11 20:38:09 +00:00
Martin Matuska
3478ae5e15
Add patch for upstream bug #2391
...
Reorganize patches
Feature safe: yes
2012-03-19 09:18:13 +00:00
Doug Barton
83eb2c3700
In the rc.d scripts, change assignments to rcvar to use the
...
literal name_enable wherever possible, and ${name}_enable
when it's not, to prepare for the demise of set_rcvar().
In cases where I had to hand-edit unusual instances also
modify formatting slightly to be more uniform (and in
some cases, correct). This includes adding some $FreeBSD$
tags, and most importantly moving rcvar= to right after
name= so it's clear that one is derived from the other.
2012-01-14 08:57:23 +00:00
Martin Matuska
434b5cd24b
Add patch to fix vendor issue 2377 (SSL renegotiations) [1]
...
Add patch to correctly report supported network handlers (lighttpd -V) [2]
References:
http://redmine.lighttpd.net/issues/2377 [1]
Reported by: Christos Chatzaras <chris_at_cretaforce_dot_gr> [1] [2]
Obtained from: lighttpd svn rev. 2822 [1]
2011-12-24 00:25:38 +00:00
Martin Matuska
449e0af321
Update to 1.4.30
...
Unbreak build if using libev
2011-12-19 07:56:10 +00:00
Martin Matuska
2ac8116134
Fix extra-patch-mysqlauth
...
PR: ports/160671
Submitted by: Zhihao Yuan <lichray@gmail.com>
2011-09-18 09:10:57 +00:00
Martin Matuska
0ef07fd2eb
Add patches from upstream (svn revisions):
...
- r2799: Always use our 'own' md5 implementation (fixes #2331 )
- r2800: fix some gcc warnings
- r2801: Limit amount of bytes we send in one go; fixes stalling in one
connection and timeouts on slow systems.
- r2802: [ssl] fix build errors when Elliptic-Curve Diffie-Hellman
is disabled
- r2803: Add static-file.disable-pathinfo option to prevent handling
of urls like .../secret.php/image.jpg as static file
- r2804: Don't overwrite 401 (auth required) with 501 (unknown method)
(fixes #2341 )
Add test and regression-test targets.
2011-09-09 09:55:17 +00:00
Doug Barton
29813d5397
Remove painful examples of foo="", with particular prejudice against
...
constructions that parse out to [ -z "$foo" ] && foo=""
These are bad examples that get copied and pasted into new code, so the
hope is that with less bad examples there will be less need for me to
bring this up in review.
In a few of these files all that were changed were comments so that next
time I search for these patterns I won't trip on the file for no reason.
In a few places, add $FreeBSD$
No functional changes, so no PORTREVISION bumps
2011-05-15 02:49:17 +00:00
Martin Matuska
209aad1f15
- Add LICENSE knobs
...
- Bundle license for mod_h264_streaming
2011-03-23 15:49:12 +00:00
Martin Matuska
cc1e730e87
- Add multiple instances ability to rc script
2010-08-31 10:11:59 +00:00
Martin Matuska
5b2767fa6f
- Integrate www/lighttpd-mysqlauth into www/lighttpd (optional)
2010-08-28 10:53:22 +00:00
Martin Matuska
28856de8ad
- Fix typo in slave module descriptions
2010-08-27 18:51:23 +00:00
Martin Matuska
e5b1e9a033
- Fix slave module descriptions
2010-08-27 18:48:31 +00:00
Martin Matuska
db0964d5fc
- Move lighttpd mod_geoip and mod_h264_streaming into slave ports
2010-08-27 18:39:55 +00:00
Martin Matuska
b22b2d0f1a
- Update to 1.4.28
...
- remove fdevent patch (already included)
2010-08-27 14:46:54 +00:00
Martin Matuska
41ef39e416
- Update lighttpd configuration file layout
...
- Do configuration sanity checks before restarting gracefully
2010-08-18 22:13:21 +00:00
Martin Matuska
690bdc62cc
- Add bugfix for lighttpd issue #2249
2010-08-18 17:01:43 +00:00
Martin Matuska
d9a32ecab5
- Update to 1.4.27
...
- Add fdevent kqueue patch from upstream (SVN revision 2764)
- Add libev support (optional)
- Do not depend on spawn-fcgi by default
- Add IPv4 and IPv6 sockets to configuration example
2010-08-15 21:48:12 +00:00
Martin Matuska
a06e0ef389
Fix stalls while reading from ssl sockets [1]
...
Fix reload signal in rc script [2]
Fix use of IPv6 adresses in mod_extforward [3]
Add optional support for mod_geoip [4]
Move pkg-config to BUILD_DEPENDS
References:
http://redmine.lighttpd.net/issues/2197 [1]
http://redmine.lighttpd.net/issues/1889 [3]
http://redmine.lighttpd.net/wiki/1/Docs:ModGeoip [4]
PR: ports/145749 [1], ports/148869 [2], ports/144110 [3], ports/137664 [4]
2010-08-03 19:09:15 +00:00
Renato Botelho
6f472dd19e
- Fix SSL related error, lighttpd bug #2157
...
- Bump PORTREVISION
PR: ports/147187
Submitted by: Hartmann, "O." <ohartman@mail.zedat.fu-berlin.de>
Approved by: mnag (maintainer)
Obtained from: http://redmine.lighttpd.net/issues/2157
2010-06-17 19:46:06 +00:00
Martin Matuska
00d62cdc46
- Add optional TCP_NODELAY patch
...
PR: ports/145985
Approved by: maintainer (timeout)
2010-05-21 07:49:36 +00:00
Doug Barton
1d6b4b3f91
Begin the process of deprecating sysutils/rc_subr by
...
s#. %%RC_SUBR%%#. /etc/rc.subr#
2010-03-27 00:15:24 +00:00
Renato Botelho
09d9c5f6f4
Update to 1.4.25
...
PR: ports/141027
Submitted by: Ralf van der Enden <tremere@cainites.net>
Approved by: mnag (maintainer)
2009-11-30 17:48:17 +00:00
Renato Botelho
53070bf710
Update to 1.4.24
...
PR: ports/140316
Approved by: maintainer by email
2009-11-09 10:24:23 +00:00
Marcus Alves Grando
7d14c56f2e
- Update to 1.4.23
...
PR: 136026
Submitted by: Martin Matuska <mm___FreeBSD.org>
2009-06-28 05:07:13 +00:00
Marcus Alves Grando
1d224692aa
- Workaround for a problem when access one symbolic link and end with /.
...
- Bump PORTREVISION.
Take from: http://redmine.lighttpd.net/issues/1989
2009-06-06 23:09:27 +00:00
Marcus Alves Grando
2903620eb9
- Modify lighttpd to use www/spawn-fcgi port.
...
- Bump PORTREVISION
PR: 133707
Submitted by: Aragon Gouveia <aragon___phat.za.net>
2009-04-25 04:17:04 +00:00
Marcus Alves Grando
a9018972be
- Update to 1.4.22
...
PR: 132395
Submitted by: Daniel Gerzo <danger___freebsd.org>
2009-03-21 22:22:43 +00:00
Marcus Alves Grando
cdb4dd0cea
- Backport EPIPE case in sendfile backend. [1]
...
- portlint(1)
- Bump PORTREVISION
Reported by: Jeroen Ruigrok van der Werven <asmodai__in-nomine.org> [1]
2009-02-24 19:06:37 +00:00
Marcus Alves Grando
b632d249a4
- Backport r2403 to fix sendfile backend.
...
- Bump PORTREVISION
Notified by: Albert Vernon <aev__vernon.nu>
2009-02-24 14:32:40 +00:00
Daniel Gerzo
5601cdae58
- update to 1.4.21
...
Changelog can be found at:
http://www.lighttpd.net/2009/2/16/1-4-21-yes-we-can-do-another-release
PR: ports/131755
Reviewed by: miwi
Approved by: portmgr (linimon)
2009-02-21 18:38:01 +00:00
Marcus Alves Grando
9d7e37f1ff
- Update to 1.4.20
...
PR: 127861
Submitted by: Daniel Gerzo <danger___FreeBSD.org>
2008-10-08 01:17:29 +00:00
Marcus Alves Grando
55873c45a1
- Multiple security fixes.
...
- Bump PORTREVISION
Notified by: miwi
Security: http://www.vuxml.org/freebsd/fb911e31-8ceb-11dd-bb29-000c6e274733.html
2008-09-27 23:47:57 +00:00
Marcus Alves Grando
f61acf41a1
- Fix small memleak in fastcgi module.
...
Submitted by: Chris Peiffer <chris__cabstand.com>
2008-09-07 15:05:44 +00:00
Marcus Alves Grando
5d3a4b6a70
- Allow change location of pidfile in rc script [1]
...
- Fix dependency of libmemcache [2]
- Add IPv6 support to mod_proxy [3]
PR: 123933 [1], 124576 [2], 126527 [3]
Submitted by: Marshal Newrock <marshal___freedombi.com> [1],
Tilman Linneweh <arved___FreeBSD.org> [3]
Notified by: Jean-Dominique Baylac <jdb___venigo.net> [2]
2008-09-07 14:48:53 +00:00
Marcus Alves Grando
6ebb75461b
- Fix DOS in SSL connection
...
PR: 122526
Submitted by: Harald Schmalzbauer <harry___omnisec.de>
Security: http://www.vuxml.org/freebsd/1ac77649-0908-11dd-974d-000fea2763ce.html
2008-04-13 03:50:28 +00:00
Marcus Alves Grando
9afd7a7477
- Respect EAGAIN and retry sendfile() instead close connection.
...
- Remove empty lines and add two more cases to switch(errno)
- Bump PORTREVISION
2007-09-22 23:13:47 +00:00
Marcus Alves Grando
ff0da305ce
- Update to 1.4.16
...
PR: 114920
Submitted by: Gea-Suan Lin <gslin___gslin.org>
2007-07-26 12:02:25 +00:00
Marcus Alves Grando
428fb24b99
- Apply security fixes
...
- Bump PORTREVISION
Security: http://secunia.com/advisories/26130/
2007-07-21 02:22:08 +00:00
Marcus Alves Grando
1e06305cee
- Update to 1.4.15
...
PR: 111552
Submitted by: Gea-Suan Lin <gslin___gslin.org>
2007-04-14 14:41:53 +00:00
Marcus Alves Grando
70fc501aae
- Add HTTPS env on mod_cgi.
...
Reported by: mark__hubcapconsulting.com
2007-03-26 12:36:46 +00:00
Marcus Alves Grando
452ac10de9
- Add WEBDAV support [1]
...
- Add workaround to enable IPV6 in lighttpd.conf [2]
- Add support to graceful restart [3]
PR: 107599 [1], 110371 [2], 110683 [3]
Submitted by: Dazza<dazza___luckydonkey.com> [1],
Joseph Terner<jtsn___gmx.de> [2],
Peter Beckman <beckman___purplecow.com> [3]
2007-03-26 03:31:58 +00:00
Marcus Alves Grando
b8532bc387
- Apply a vendor patch that fixes CPU starvation
...
- Bump PORTREVISION
Submitted by: delphij
2007-03-12 19:34:54 +00:00
Marcus Alves Grando
1009be28b6
- Update to 1.4.13 [1]
...
- Add options for bzip2, fam, gdbm, memcache, and valgrind [1]
- Fix build in 4.x
PR: 104239 [1]
Submitted by: Gea-Suan Lin <gslin___gslin.org> [1]
Approved by: maintainer timeout (21 days)
2006-10-31 03:22:20 +00:00