diff options
Diffstat (limited to 'roles/apache/templates/vhost.conf.j2')
-rw-r--r-- | roles/apache/templates/vhost.conf.j2 | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/roles/apache/templates/vhost.conf.j2 b/roles/apache/templates/vhost.conf.j2 new file mode 100644 index 0000000..78862af --- /dev/null +++ b/roles/apache/templates/vhost.conf.j2 @@ -0,0 +1,27 @@ +# This file is managed by Ansible. Do not change. + +<IfModule mod_ssl.c> + <VirtualHost _default_:443> + ServerName {{ item.value.hostname }} + + ServerAdmin webmaster@localhost + DocumentRoot /var/www/{{ item.key }}/{{ item.value.relative_root }} + + <Directory /var/www/{{ item.key }}> + AllowOverride All + Require all granted + </Directory> + + AssignUserID www-{{ item.key }} www-{{ item.key }} + + Include ssl.conf + + {{ item.value.apache_custom_conf | default("") }} + + <FilesMatch \.php$> + SetHandler "proxy:unix:/run/php/php{{ item.value.php_version }}-fpm.www-{{ item.key }}.sock|fcgi://localhost" + </FilesMatch> + </VirtualHost> +</IfModule> + +# vim: syntax=apache ts=4 sw=4 sts=4 sr noet |