vhosts.j2 626 B

123456789101112131415161718192021222324
  1. {% for vhost in nginx_vhosts %}
  2. server {
  3. listen {{ vhost.listen | default('80 default_server') }};
  4. server_name {{ vhost.server_name }};
  5. root {{ vhost.root }};
  6. index {{ vhost.index | default('index.html index.htm') }};
  7. {% if vhost.error_page is defined %}
  8. error_page {{ vhost.error_page }};
  9. {% endif %}
  10. {% if vhost.access_log is defined %}
  11. access_log {{ vhost.access_log }};
  12. {% endif %}
  13. {% if vhost.return is defined %}
  14. return {{ vhost.return }};
  15. {% endif %}
  16. {% if vhost.extra_parameters is defined %}
  17. {{ vhost.extra_parameters }};
  18. {% endif %}
  19. }
  20. {% endfor %}