{% if endpoints -%} {% for ext_port in ext_ports -%} Listen {{ ext_port }} {% endfor -%} {% for address, endpoint, ext, int in endpoints -%} ServerName {{ endpoint }} SSLEngine on SSLCertificateFile /etc/apache2/ssl/{{ namespace }}/cert_{{ endpoint }} SSLCertificateKeyFile /etc/apache2/ssl/{{ namespace }}/key_{{ endpoint }} ProxyPass / http://localhost:{{ int }}/ ProxyPassReverse / http://localhost:{{ int }}/ ProxyPreserveHost on {% endfor -%} Order deny,allow Allow from all Order allow,deny Allow from all {% endif -%}