Jinja Apache2

This commit is contained in:
Guillem Hernandez Sola
2025-06-19 09:15:27 +02:00
parent c750538144
commit d9f9afef19
3 changed files with 17 additions and 17 deletions

View File

@@ -0,0 +1,16 @@
<VirtualHost *:80>
ServerAdmin {{ ansible_hostname }}@{{ ansible_domain }}
ServerName {{ ansible_hostname }}.{{ ansible_domain }}
ServerAlias {{ ansible_hostname }}.{{ ansible_domain }}
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/{{ ansible_hostname }}_error.log
CustomLog ${APACHE_LOG_DIR}/{{ ansible_hostname }}.log combined
<Directory /var/www/html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>