blob: 6c393f7a902cfdc89b38dee13a4adc4e6bc42a35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<VirtualHost *:80>
ServerAdmin sysadm@mageia.org
ServerName meetbot.<%= domain %>
DocumentRoot <%= scope.lookupvar("websites::meetbot::vhostdir") %>
CustomLog /var/log/httpd/access_meetbot_log combined
ErrorLog /var/log/httpd/error_meetbot_log
<Directory <%= scope.lookupvar("websites::meetbot::vhostdir") %>>
Allow from all
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
Options +Indexes
IndexIgnore .htaccess *.bak *~ *.txt *.log.html
</Directory>
</VirtualHost>
|