diff options
author | steffen@stelas.de <steffen@stelas.de> | 2016-03-31 17:30:50 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-04-27 13:45:17 +0000 |
commit | 35091c0926ed2ee50dba427035e53819a32b72dc (patch) | |
tree | 9bd5eb5ce9febf31c44c6d91a87465990a960f89 /main/apache2/APKBUILD | |
parent | 8adbdb52211e9efd1186f7b023d6742a295fb63f (diff) | |
download | aports-35091c0926ed2ee50dba427035e53819a32b72dc.tar.bz2 aports-35091c0926ed2ee50dba427035e53819a32b72dc.tar.xz |
main/apache2: recompile broken suEXEC
Fixing two issues regarding suEXEC:
- suEXEC compiles with correct Apache user
- set docroot to /var/www - needed for virtual hosts
ref #5500
Diffstat (limited to 'main/apache2/APKBUILD')
-rw-r--r-- | main/apache2/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/apache2/APKBUILD b/main/apache2/APKBUILD index 82f53ba24f..642e58b169 100644 --- a/main/apache2/APKBUILD +++ b/main/apache2/APKBUILD @@ -3,7 +3,7 @@ pkgname=apache2 _pkgreal=httpd pkgver=2.4.18 -pkgrel=1 +pkgrel=2 pkgdesc="A high performance Unix-based HTTP server" url="http://httpd.apache.org/" arch="all" @@ -71,8 +71,8 @@ build() { --enable-layout=Alpine \ --enable-so \ --enable-suexec \ - --with-suexec-caller=http \ - --with-suexec-docroot=/var/www/localhost/htdocs \ + --with-suexec-caller=apache \ + --with-suexec-docroot=/var/www \ --with-suexec-logfile=/var/log/apache2/suexec.log \ --with-suexec-bin=/usr/sbin/suexec \ --with-suexec-uidmin=99 \ |