ansible-ffibk/roles/ffmwu-build/templates/ffmwu-default-http.conf.j2
Tobias Hachmer 6127353ae7 Update ansible role ffmwu-build
* use ecdsautils from ffmwu debian repo instead of building from source
 * remove some trailing white spaces
 * use command module instead of shell module where it is possible
 * update module syntax to list form for better reading
 * role ffmwu-build should be idempotent now
2016-11-26 14:17:14 +01:00

17 lines
391 B
Django/Jinja

<VirtualHost *:80>
ServerName {{ inventory_hostname }}
ServerAdmin webmaster@freifunk-mwu.de
DocumentRoot /var/www/html
<Directory /var/www/html>
Options +Indexes +FollowSymlinks
IndexOptions FancyIndexing +FoldersFirst +HTMLTable +NameWidth=*
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet