26 lines
804 B
Plaintext
26 lines
804 B
Plaintext
<VirtualHost *:80>
|
|
DocumentRoot /var/alternc/bureau
|
|
ServerName %%fqdn%%
|
|
|
|
alias /admin/sql /usr/share/phpmyadmin
|
|
alias /webmail /usr/share/squirrelmail
|
|
|
|
<Directory />
|
|
Options FollowSymLinks
|
|
AllowOverride None
|
|
</Directory>
|
|
<Directory /var/alternc/bureau>
|
|
Order allow,deny
|
|
Allow from all
|
|
|
|
php_admin_flag safe_mode_gid off
|
|
php_admin_flag safe_mode off
|
|
php_admin_flag register_globals on
|
|
AddDefaultCharset ISO-8859-1
|
|
php_admin_value open_basedir /etc/alternc/:/var/run/alternc/:/var/alternc/bureau/:/var/alternc/html/:/var/alternc/tmp:/tmp:/usr/share/php/:/var/cache/alternc-webalizer/
|
|
</Directory>
|
|
|
|
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>
|