Update to 2022-08-09 15:00

This commit is contained in:
Daniel Berteaud 2022-08-09 15:00:22 +02:00
parent e0ae369ed1
commit 0a7e1bdc78
2 changed files with 9 additions and 0 deletions

View File

@ -51,6 +51,13 @@ recursors = [
{% endfor %}
]
{% if consul_conf.domain is defined %}
domain = "{{ consul_conf.domain }}"
{% if consul_conf.alt_domain is defined %}
alt_domain = "{{ consul_conf.alt_domain }}"
{% endif %}
{% endif %}
telemetry {
prometheus_retention_time = "{{ consul_conf.telemetry.prometheus_retention_time }}"
}

View File

@ -15,6 +15,8 @@ events {
http {
server_names_hash_max_size 1024;
{% if nginx_openresty %}
# Set nginx compatible paths for openresty
client_body_temp_path /var/lib/nginx/tmp/client_body;