Merge branch 'stable-3.1' of github.com:AlternC/AlternC into stable-3.1
This commit is contained in:
commit
c710f94d62
|
@ -9,6 +9,9 @@
|
||||||
# Define the default user and group for mpm-itk
|
# Define the default user and group for mpm-itk
|
||||||
AssignUserId www-data www-data
|
AssignUserId www-data www-data
|
||||||
|
|
||||||
|
# Logformat information
|
||||||
|
Include /etc/alternc/apache_logformat.conf
|
||||||
|
|
||||||
# Deny access to the root filesystem
|
# Deny access to the root filesystem
|
||||||
<Directory />
|
<Directory />
|
||||||
Options FollowSymLinks
|
Options FollowSymLinks
|
||||||
|
|
|
@ -49,9 +49,7 @@ if (! $conf) {
|
||||||
|
|
||||||
// Add some headers
|
// Add some headers
|
||||||
$conf2 = "###BEGIN OF ALTERNC AUTO-GENERATED FILE - DO NOT EDIT MANUALLY###
|
$conf2 = "###BEGIN OF ALTERNC AUTO-GENERATED FILE - DO NOT EDIT MANUALLY###
|
||||||
# Generation: ".date('Y-m-d H:i:s')."
|
# Generation: ".date('Y-m-d H:i:s');
|
||||||
## LogFormat informations
|
|
||||||
Include \"/etc/alternc/apache_logformat.conf\"";
|
|
||||||
|
|
||||||
// Do we need to include manual configuration ?
|
// Do we need to include manual configuration ?
|
||||||
if ( is_dir( ALTERNC_VHOST_MANUALCONF ) ) {
|
if ( is_dir( ALTERNC_VHOST_MANUALCONF ) ) {
|
||||||
|
|
|
@ -22,7 +22,6 @@ umask 022
|
||||||
LOCK_FILE="/usr/share/alternc/panel/cron.lock" # FIXME doesn't seem clean to be here
|
LOCK_FILE="/usr/share/alternc/panel/cron.lock" # FIXME doesn't seem clean to be here
|
||||||
OLDIFS="$IFS"
|
OLDIFS="$IFS"
|
||||||
NEWIFS=" "
|
NEWIFS=" "
|
||||||
LOGFORMAT_FILE="/etc/alternc/apache_logformat.conf"
|
|
||||||
RELOAD_WEB="$(mktemp /tmp/alternc_reload_web.XXXX)"
|
RELOAD_WEB="$(mktemp /tmp/alternc_reload_web.XXXX)"
|
||||||
RELOAD_DNS="$(mktemp /tmp/alternc_reload_dns.XXXX)"
|
RELOAD_DNS="$(mktemp /tmp/alternc_reload_dns.XXXX)"
|
||||||
B="µµ§§" # Strange letters to make split in query
|
B="µµ§§" # Strange letters to make split in query
|
||||||
|
@ -130,14 +129,6 @@ if [ ! -z "$(cat "$RELOAD_WEB")" ] ; then
|
||||||
|
|
||||||
(
|
(
|
||||||
echo "###BEGIN OF ALTERNC AUTO-GENERATED FILE - DO NOT EDIT MANUALLY###"
|
echo "###BEGIN OF ALTERNC AUTO-GENERATED FILE - DO NOT EDIT MANUALLY###"
|
||||||
# If exists and readable, include conf file "apache_logformat.conf"
|
|
||||||
# contain LogFormat and CustomLog directives for our Vhosts)
|
|
||||||
echo "## LogFormat informations"
|
|
||||||
if [ ! -r "$LOGFORMAT_FILE" ] ; then
|
|
||||||
echo "## Warning : Cannot read $LOGFORMAT_FILE"
|
|
||||||
else
|
|
||||||
echo "Include \"$LOGFORMAT_FILE\""
|
|
||||||
fi
|
|
||||||
find "$VHOST_DIR" -mindepth 2 -type f -iname "*.conf" -print0 | xargs -0 cat
|
find "$VHOST_DIR" -mindepth 2 -type f -iname "*.conf" -print0 | xargs -0 cat
|
||||||
echo "###END OF ALTERNC AUTO-GENERATED FILE - DO NOT EDIT MANUALLY###"
|
echo "###END OF ALTERNC AUTO-GENERATED FILE - DO NOT EDIT MANUALLY###"
|
||||||
) > "$tempo"
|
) > "$tempo"
|
||||||
|
|
Loading…
Reference in New Issue