lighttpd: use httpd as default users and the same paths as all other httpds.

This commit is contained in:
Enno Boland 2016-03-28 10:53:45 +02:00
parent c7c87b1baa
commit 6a209a7e79
2 changed files with 7 additions and 7 deletions

View file

@ -3,9 +3,9 @@
# and http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions
server.port = 80
server.username = "lighttpd"
server.groupname = "lighttpd"
server.document-root = "/srv/www"
server.username = "httpd"
server.groupname = "httpd"
server.document-root = "/srv/httpd"
server.errorlog = "/var/log/lighttpd/error.log"
dir-listing.activate = "enable"
index-file.names = ( "index.html" )

View file

@ -1,15 +1,15 @@
# Template file for 'lighttpd'
pkgname=lighttpd
version=1.4.39
revision=1
revision=2
makedepends="libmysqlclient-devel lua-devel libxml2-devel sqlite-devel gdbm-devel pcre-devel libressl-devel fcgi-devel"
hostmakedepends="automake pkg-config pcre-devel libtool"
conf_files="/etc/lighttpd/lighttpd.conf"
system_accounts="lighttpd"
lighttpd_homedir="/var/tmp/lighttpd"
system_accounts="httpd"
lighttpd_homedir="/src/httpd"
make_dirs="
/srv/www 0755 root root
/var/log/lighttpd 0750 lighttpd lighttpd"
/var/log/lighttpd 0750 httpd httpd"
short_desc="A secure, fast, compliant and very flexible web-server"
maintainer="Enno Boland <gottox@voidlinux.eu>"
license="2-clause-BSD"