2015-02-21 07:02:51 +01:00
|
|
|
{% for vhost in nginx_vhosts %}
|
|
|
|
server {
|
|
|
|
listen {{ vhost.listen | default('80 default_server') }};
|
|
|
|
server_name {{ vhost.server_name }};
|
|
|
|
|
2015-12-25 20:42:17 +01:00
|
|
|
{% if vhost.root is defined %}
|
2015-02-21 07:02:51 +01:00
|
|
|
root {{ vhost.root }};
|
2015-12-25 20:42:17 +01:00
|
|
|
{% endif %}
|
|
|
|
|
2015-02-21 07:02:51 +01:00
|
|
|
index {{ vhost.index | default('index.html index.htm') }};
|
|
|
|
|
|
|
|
{% if vhost.error_page is defined %}
|
|
|
|
error_page {{ vhost.error_page }};
|
|
|
|
{% endif %}
|
|
|
|
{% if vhost.access_log is defined %}
|
|
|
|
access_log {{ vhost.access_log }};
|
|
|
|
{% endif %}
|
2015-12-28 14:09:41 +01:00
|
|
|
{% if vhost.error_log is defined %}
|
|
|
|
error_log {{ vhost.error_log }} error;
|
|
|
|
{% endif %}
|
2015-02-21 07:02:51 +01:00
|
|
|
|
|
|
|
{% if vhost.return is defined %}
|
|
|
|
return {{ vhost.return }};
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if vhost.extra_parameters is defined %}
|
2015-08-06 13:05:31 +02:00
|
|
|
{{ vhost.extra_parameters }}
|
2015-02-21 07:02:51 +01:00
|
|
|
{% endif %}
|
|
|
|
}
|
|
|
|
{% endfor %}
|