12 lines
375 B
Plaintext
12 lines
375 B
Plaintext
|
<VirtualHost *:80>
|
||
|
ServerName %%fqdn%%
|
||
|
DocumentRoot "%%document_root%%"
|
||
|
|
||
|
<Directory "%%document_root%%">
|
||
|
php_admin_value open_basedir "%%document_root%%:/usr/share/php/:/var/alternc/tmp:/tmp"
|
||
|
</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>
|