create a apache2 configuration file, required because of the logfile location
This commit is contained in:
parent
9e7857073b
commit
57b5a642cb
|
@ -277,6 +277,7 @@ debian/rules -text
|
||||||
debian/templates -text
|
debian/templates -text
|
||||||
etc/alternc/apache-ssl.conf -text
|
etc/alternc/apache-ssl.conf -text
|
||||||
etc/alternc/apache.conf -text
|
etc/alternc/apache.conf -text
|
||||||
|
etc/alternc/apache2.conf -text
|
||||||
etc/alternc/menulist.txt -text
|
etc/alternc/menulist.txt -text
|
||||||
etc/alternc/phpmyadmin.inc.php -text
|
etc/alternc/phpmyadmin.inc.php -text
|
||||||
etc/alternc/postfix.cf -text
|
etc/alternc/postfix.cf -text
|
||||||
|
|
|
@ -185,7 +185,7 @@ EOF
|
||||||
fi
|
fi
|
||||||
if [ -x /usr/sbin/apache2 ]; then
|
if [ -x /usr/sbin/apache2 ]; then
|
||||||
if [ ! -h /etc/apache2/conf.d/alternc.conf ] && [ -e /etc/apache2/conf.d/ ]; then
|
if [ ! -h /etc/apache2/conf.d/alternc.conf ] && [ -e /etc/apache2/conf.d/ ]; then
|
||||||
ln -sf /etc/alternc/apache.conf \
|
ln -sf /etc/alternc/apache2.conf \
|
||||||
/etc/apache2/conf.d/alternc.conf
|
/etc/apache2/conf.d/alternc.conf
|
||||||
fi
|
fi
|
||||||
if [ ! -h /etc/apache2/conf.d/override_php.conf ] && [ -e /etc/apache2/conf.d/ ]; then
|
if [ ! -h /etc/apache2/conf.d/override_php.conf ] && [ -e /etc/apache2/conf.d/ ]; then
|
||||||
|
|
|
@ -217,7 +217,7 @@ EOF
|
||||||
fi
|
fi
|
||||||
if [ -x /usr/sbin/apache2 ]; then
|
if [ -x /usr/sbin/apache2 ]; then
|
||||||
if [ ! -h /etc/apache2/conf.d/alternc.conf ] && [ -e /etc/apache2/conf.d/ ]; then
|
if [ ! -h /etc/apache2/conf.d/alternc.conf ] && [ -e /etc/apache2/conf.d/ ]; then
|
||||||
ln -sf /etc/alternc/apache.conf \
|
ln -sf /etc/alternc/apache2.conf \
|
||||||
/etc/apache2/conf.d/alternc.conf
|
/etc/apache2/conf.d/alternc.conf
|
||||||
fi
|
fi
|
||||||
if [ ! -h /etc/apache2/conf.d/override_php.conf ] && [ -e /etc/apache2/conf.d/ ]; then
|
if [ ! -h /etc/apache2/conf.d/override_php.conf ] && [ -e /etc/apache2/conf.d/ ]; then
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
# This module is loaded in /etc/apache/modules, and enabled by apache-modconf
|
||||||
|
# LoadModule vhost_alias_module /usr/lib/apache/1.3/mod_vhost_alias.so
|
||||||
|
|
||||||
|
ScriptAlias /cgi-bin/ /var/alternc/cgi-bin/
|
||||||
|
|
||||||
|
<Directory /var/alternc/cgi-bin/>
|
||||||
|
Options FollowSymLinks IncludesNOEXEC ExecCGI
|
||||||
|
AllowOverride None
|
||||||
|
Order allow,deny
|
||||||
|
Allow from all
|
||||||
|
AddHandler cgi-script .cgi
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
<VirtualHost *:80>
|
||||||
|
# ***ALTERNC_ALIASES***
|
||||||
|
Alias /icons/ /usr/share/apache/icons/
|
||||||
|
|
||||||
|
UseCanonicalName Off
|
||||||
|
VirtualDocumentRoot /var/alternc/dns/%-2.1/%0
|
||||||
|
|
||||||
|
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %T %{Host}i" alternc
|
||||||
|
CustomLog /var/log/apache2/access.log alternc
|
||||||
|
</VirtualHost>
|
||||||
|
|
||||||
|
<Directory /var/alternc>
|
||||||
|
AllowOverride AuthConfig FileInfo
|
||||||
|
Options Indexes Includes FollowSymLinks MultiViews
|
||||||
|
Order allow,deny
|
||||||
|
Allow from all
|
||||||
|
php_admin_flag safe_mode_gid on
|
||||||
|
php_admin_flag safe_mode on
|
||||||
|
php_admin_value disable_functions chmod,chown,chgrp,link,symlink
|
||||||
|
php_admin_value safe_mode_exec_dir /var/alternc/exec.usr
|
||||||
|
php_admin_value disable_functions chgrp,link,symlink
|
||||||
|
|
||||||
|
php_admin_flag enable_dl off
|
||||||
|
php_admin_value upload_tmp_dir /var/alternc/tmp
|
||||||
|
php_admin_value sendmail_path /usr/lib/alternc/sendmail
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
Include /etc/alternc/bureau.conf
|
Loading…
Reference in New Issue