# {{ ansible_managed }} {% for client in wh_clients %} {% for app in client.apps | default([]) %} {% set app = wh_default_app | combine(app, recursive=True) %} {% if app.backend | default(client.backend) | default(wh_defaults.backend) == inventory_hostname %} ################################################ ## vhost for {{ client.name }}-{{ app.name }} ################################################ ServerName {{ app.vhost | default(client.name + '-' + app.name + '.wh.fws.fr') }} {% if app.aliases | length > 0 %} ServerAlias {{ app.aliases | join(' ') }} {% endif %} ServerAdmin webmaster@fws.fr DocumentRoot /opt/wh/{{ client.name }}/apps/{{ app.name }}/web Alias /_deferror/ "/usr/share/httpd/error/" Include ansible_conf.d/common_env.inc ProxyTimeout {{ app.php.max_execution_time }} ################################################ ## webroot for {{ client.name }}-{{ app.name }} ################################################ AllowOverride All Options FollowSymLinks Require all granted {% if app.php.enabled %} SetHandler "proxy:unix:/run/php-fpm/php{{ app.php.version}}-{{ client.name }}-{{ app.name }}.sock|fcgi://localhost" {% endif %} Require all denied {% endif %} {% endfor %} {% endfor %}