AlternC/etc/alternc/templates/apache2/vhost.conf

15 lines
532 B
Plaintext
Raw Normal View History

<VirtualHost *:80>
ServerName %%fqdn%%
DocumentRoot "%%document_root%%"
2011-05-17 16:36:01 +00:00
AssignUserId #%%UID%% #%%GID%%
<Directory "%%document_root%%">
php_admin_value open_basedir "%%document_root%%:/usr/share/php/:/var/alternc/tmp:/tmp"
Options +MultiViews -FollowSymLinks +SymLinksIfOwnerMatch
AllowOverride AuthConfig FileInfo Limit Options Indexes
</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>