|
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
#
|
|
# Filename: target/mnemosyne/pkg_conf/apache.conf
|
|
# Copyright (C) 2002 - 2006 Alejandro Mery
|
|
#
|
|
# More information can be found in the files COPYING and README.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; version 2 of the License. A copy of the
|
|
# GNU General Public License can be found in the file COPYING.
|
|
# --- SDE-COPYRIGHT-NOTE-END ---
|
|
|
|
if [ "${SDECFG_PKG_APACHE_DOCROOT:0:1}" == "/" ]; then
|
|
docroot=$( echo "$SDECFG_PKG_APACHE_DOCROOT" | sed -e 's,/\([^/]*\).*,\1,g' )
|
|
if [ -z "$( echo $flistroot | tr ' ' '\n' | grep -e "^$docroot\$" )" ]; then
|
|
var_append flistroot ' ' $docroot
|
|
mkdir -p "$xroot/$SDECFG_PKG_APACHE_DOCROOT"
|
|
# ln -s "$xroot/$SDECFG_PKG_APACHE_DOCROOT" "$SDECFG_PKG_APACHE_DOCROOT"
|
|
fi
|
|
fi
|
|
|
|
hook_add postmake 5 'mnemosyne_adapt_apache'
|
|
|
|
mnemosyne_adapt_apache() {
|
|
mkdir -vp $sysconfdir/{conf,hosts}.d
|
|
|
|
if ! grep -q "Include $sysconfdir/conf.d/\*.conf" $sysconfdir/httpd.conf; then
|
|
echo "Include $sysconfdir/conf.d/*.conf" \
|
|
>> $sysconfdir/httpd.conf
|
|
fi
|
|
|
|
cat <<-EOT > $sysconfdir/conf.d/vhost.conf-dist
|
|
NameVirtualHost *:80
|
|
|
|
Include $sysconfdir/hosts.d/*.conf
|
|
EOT
|
|
}
|