darkhttpd: new package
This new package provides darkhttpd, a simple, fast HTTP 1.1 web server for static content. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
cf29428968
commit
9c9de1e2b5
@ -1466,6 +1466,7 @@ menu "Networking applications"
|
||||
source "package/ctorrent/Config.in"
|
||||
source "package/cups/Config.in"
|
||||
source "package/dante/Config.in"
|
||||
source "package/darkhttpd/Config.in"
|
||||
source "package/dhcp/Config.in"
|
||||
source "package/dhcpcd/Config.in"
|
||||
source "package/dhcpdump/Config.in"
|
||||
|
14
package/darkhttpd/Config.in
Normal file
14
package/darkhttpd/Config.in
Normal file
@ -0,0 +1,14 @@
|
||||
config BR2_PACKAGE_DARKHTTPD
|
||||
bool "darkhttpd"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
Darkhttpd is a simple, fast HTTP 1.1 web server which only
|
||||
serves static content. It does not support PHP or CGI.
|
||||
|
||||
The behavior of darkhttpd can be altered by setting some
|
||||
variables in /etc/default/darkhttpd:
|
||||
|
||||
- DARKHTTPD_ROOT: path to the server document root.
|
||||
- DARKHTTPD_FLAGS: options to pass to darkhttpd.
|
||||
|
||||
https://unix4lyfe.org/darkhttpd/
|
45
package/darkhttpd/S50darkhttpd
Executable file
45
package/darkhttpd/S50darkhttpd
Executable file
@ -0,0 +1,45 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Starts darkhttpd.
|
||||
#
|
||||
|
||||
# Allow a few customizations from a config file
|
||||
test -r /etc/default/darkhttpd && . /etc/default/darkhttpd
|
||||
|
||||
DARKHTTPD_PROG=/usr/sbin/darkhttpd
|
||||
DARKHTTPD_PIDFILE=/var/run/darkhttpd.pid
|
||||
DARKHTTPD_ARGS="${DARKHTTPD_ROOT:-/var/www} --log /var/log/darkhttpd.log $DARKHTTPD_FLAGS --chroot --uid nobody --gid www-data"
|
||||
|
||||
start() {
|
||||
printf "Starting darkhttpd: "
|
||||
start-stop-daemon -S -q -b -p $DARKHTTPD_PIDFILE -m --exec $DARKHTTPD_PROG -- $DARKHTTPD_ARGS
|
||||
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
||||
}
|
||||
|
||||
stop() {
|
||||
printf "Stopping darkhttpd: "
|
||||
start-stop-daemon -K -q -p $DARKHTTPD_PIDFILE
|
||||
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
||||
}
|
||||
|
||||
restart() {
|
||||
stop
|
||||
start
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
start
|
||||
;;
|
||||
stop)
|
||||
stop
|
||||
;;
|
||||
restart|reload)
|
||||
restart
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart}"
|
||||
exit 1
|
||||
esac
|
||||
|
||||
exit $?
|
2
package/darkhttpd/darkhttpd.hash
Normal file
2
package/darkhttpd/darkhttpd.hash
Normal file
@ -0,0 +1,2 @@
|
||||
# Locally generated
|
||||
sha256 a50417b622b32b5f421b3132cb94ebeff04f02c5fb87fba2e31147d23de50505 darkhttpd-1.12.tar.bz2
|
34
package/darkhttpd/darkhttpd.mk
Normal file
34
package/darkhttpd/darkhttpd.mk
Normal file
@ -0,0 +1,34 @@
|
||||
################################################################################
|
||||
#
|
||||
# darkhttpd
|
||||
#
|
||||
################################################################################
|
||||
|
||||
DARKHTTPD_VERSION = 1.12
|
||||
DARKHTTPD_SITE = https://unix4lyfe.org/darkhttpd
|
||||
DARKHTTPD_SOURCE = darkhttpd-$(DARKHTTPD_VERSION).tar.bz2
|
||||
DARKHTTPD_LICENSE = MIT
|
||||
|
||||
define DARKHTTPD_BUILD_CMDS
|
||||
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
|
||||
endef
|
||||
|
||||
define DARKHTTPD_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 0755 $(@D)/darkhttpd \
|
||||
$(TARGET_DIR)/usr/sbin/darkhttpd
|
||||
endef
|
||||
|
||||
define DARKHTTPD_INSTALL_INIT_SYSTEMD
|
||||
$(INSTALL) -D -m 0644 package/darkhttpd/darkhttpd.service \
|
||||
$(TARGET_DIR)/usr/lib/systemd/system/darkhttpd.service
|
||||
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
||||
ln -fs ../../../../usr/lib/systemd/system/darkhttpd.service \
|
||||
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/darkhttpd.service
|
||||
endef
|
||||
|
||||
define DARKHTTPD_INSTALL_INIT_SYSV
|
||||
$(INSTALL) -D -m 0755 package/darkhttpd/S50darkhttpd \
|
||||
$(TARGET_DIR)/etc/init.d/S50darkhttpd
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
11
package/darkhttpd/darkhttpd.service
Normal file
11
package/darkhttpd/darkhttpd.service
Normal file
@ -0,0 +1,11 @@
|
||||
[Unit]
|
||||
Description=Darkhttpd Web Server
|
||||
After=syslog.target network.target auditd.service
|
||||
|
||||
[Service]
|
||||
Environment="DARKHTTPD_ROOT=/var/www"
|
||||
EnvironmentFile=-/etc/default/darkhttpd
|
||||
ExecStart=/usr/sbin/darkhttpd $DARKHTTPD_ROOT $DARKHTTPD_FLAGS --chroot --uid nobody --gid www-data
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Reference in New Issue
Block a user