aboutsummaryrefslogtreecommitdiff
path: root/net/lighttpd
Commit message (Collapse)AuthorAge
* Lighttpd: Update to 1.4.49Xavier Franquet2018-05-23
| | | | | | | | At 1.4.48, base64 decode is broken when libc sees `char` as `unsigned char` https://github.com/lighttpd/lighttpd1.4/commit/d4083effab0f9bf76528d5c47198b17e7471ed13?diff=unified Signed-off-by: Xavier Franquet <xavier@franquet.es>
* lighttpd: add mod-wstunnelVincent Riou2018-03-23
| | | | | Exposes the mod-wstunnel plugin which implements websocket proxying over http Signed-off-by: Vincent Riou <vincent@invizbox.com>
* lighttpd: fix PKG_CONFIG_DEPENDS (fixes #4210)Michael Heimpold2018-01-08
| | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* lighttpd: CONFIG_LIGHTTPD_SSL includes mod_opensslPhilip Prindeville2018-01-03
| | | | | | | If we're built with CONFIG_LIGHTTPD_SSL then mod_openssl.so should be included into the base package. Fixes issue #5343. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
* lighttpd: update to 1.4.48Philip Prindeville2017-12-16
| | | | | | | All of the bugs for which we had patches have been fixed upstream in 1.4.46, so the patches can be dropped. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
* treewide: run "make check FIXUP=1"Etienne Champetier2017-08-29
| | | | | | | | | | fix Makefile chmod (644) replace MD5SUM with HASH add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git (PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now) Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* lighttpd: add 'reload' to init script to make logrotate-friendlyPhilip Prindeville2017-07-10
| | | | | | | | If lighttpd's scripts are rotated from under it while they're still open, this will cause some weird things to happen. Give it a heads up that the logs have moved. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
* lighttpd: backport more mod_cgi fixes queued for 1.4.46Rafał Miłecki2017-06-29
| | | | | | | | | | | | | | | | | | | The most important change is local redirects being disabled by default. There is an option called cgi.local-redir that allows enabling this optimization manually back if needed. Local redirects were initially introduced in 1.4.40 but caused many problems for *some* web services. One of problems is breaking Post/Redirect/Get design pattern. With redirects handled on server side there is no browser redirection making it "lose" the POST data. Another possible issue are HTML forms with action="". With CGI local redirects browser may be sending form data to the wrong URL (the one that was supposed to redirect the browser). Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
* lighttpd: use procd-based init.d scriptPhilip Prindeville2017-06-01
| | | | | | | This will allow procd to restart the service if it crashes or otherwise exits. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
* lighttpd: add new modules, upd URLs, add restart()Glenn Strauss2017-03-22
| | | | | | (with feedback from @hnyman and patch additions from @MikePetullo) Signed-off-by: Glenn Strauss <gstrauss@gluelogic.com>
* lighttpd: fix regression in local-redir used with url.rewrite-onceRafał Miłecki2017-02-23
| | | | | | | | | This fixes upstream regression introduced in 1.4.40. It was reported & debugged in https://redmine.lighttpd.net/issues/2793 This fix is queued for 1.4.46 in the personal/gstrauss/master upstream branch. Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
* lighttpd: update to 1.4.45Rafał Miłecki2017-02-20
| | | | | | | | | | | | | | | | | | Update to 1.4.42 introduced a problem with starting lighttpd as OpenWrt/LEDE service. It was stopping whole init process at sth like: 783 root 1124 S {S50lighttpd} /bin/sh /etc/rc.common /etc/rc.d/S50lighttpd boot 799 root 1164 S /usr/sbin/lighttpd -f /etc/lighttpd/lighttpd.conf It was hanging until getting random pool: [ 176.340007] random: nonblocking pool is initialized and then immediately the rest of init process followed: [ 176.423475] jffs2_scan_eraseblock(): End of filesystem marker found at 0x0 [ 176.430754] jffs2_build_filesystem(): unlocking the mtd device... done. [ 176.437615] jffs2_build_filesystem(): erasing all blocks after the end marker... done. This was fixed in 1.4.44, but bump directly to 1.4.45 while at it. Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
* lighttpd: add option to build mod_authn_file.soW. Michael Petullo2016-11-25
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* lighttpd: update to 1.4.42W. Michael Petullo2016-10-29
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* lighttpd: update to 1.4.41W. Michael Petullo2016-09-14
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* lighttpd: update to 1.4.38W. Michael Petullo2015-12-30
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* lighttpd: update to 1.4.37W. Michael Petullo2015-09-20
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* lighttpd: backport a fix for running out of filedescriptorsRafał Miłecki2015-08-19
| | | | | | | It was breaking uploads of files 4 MiB+. This patch fixes: https://github.com/openwrt/packages/issues/1658 Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
* lighttpd: update to 1.4.36W. Michael Petullo2015-07-26
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* lighttpd: add liblua deps for lighttpd-mod-cml and lighttpd-mod-magnetAlexander Ryzhov2015-04-23
| | | | Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
* lighttpd: reorder modules so that redirect loads before authW. Michael Petullo2014-12-16
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* misc: correct typo in Makefiles for PKG_LICENSE_FILESIan Leonard2014-11-24
| | | | Signed-off-by: Ian Leonard <antonlacon@gmail.com>
* lighttpd: clean up configuration fileW. Michael Petullo2014-09-21
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* lighttpd: create user http and run as http by defaultW. Michael Petullo2014-09-21
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* lighttpd: include some updates from old repository packageW. Michael Petullo2014-09-20
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* [PATCH] lighttpd: errorlog failed as non root userchris55602014-07-23
| | | | | | | | | if running as non root user (what's should be the default on web-servers) you get: (log.c.118) opening errorlog '/var/log/lighttpd/server.log' failed: Permission denied Fix: create log directory only if not exist and chmod 777 to allow anyone to write and create files inside default log directory Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
* lighttpd: update to 1.4.35W. Michael Petullo2014-07-19
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* Copy lighttpd package from old repositoryW. Michael Petullo2014-07-19
Signed-off-by: W. Michael Petullo <mike@flyn.org>