diff --git a/templates/http/default.conf.j2 b/templates/http/default.conf.j2 index 7ec94a7..8c3c9c0 100644 --- a/templates/http/default.conf.j2 +++ b/templates/http/default.conf.j2 @@ -1,4 +1,4 @@ -# {{ ansible_managed }} +{{ ansible_managed | comment }} {% if item.value.upstreams is defined %} {% for upstream in item.value.upstreams %} diff --git a/templates/nginx.conf.j2 b/templates/nginx.conf.j2 index 4d55796..dc103e3 100644 --- a/templates/nginx.conf.j2 +++ b/templates/nginx.conf.j2 @@ -1,4 +1,4 @@ -# {{ ansible_managed }} +{{ ansible_managed | comment }} user {{ nginx_main_template.user }}; worker_processes {{ nginx_main_template.worker_processes }}; diff --git a/templates/stream/default.conf.j2 b/templates/stream/default.conf.j2 index 445bb69..ab2d5b0 100644 --- a/templates/stream/default.conf.j2 +++ b/templates/stream/default.conf.j2 @@ -1,4 +1,4 @@ -# {{ ansible_managed }} +{{ ansible_managed | comment }} {% if item.value.upstreams is defined %} {% for upstream in item.value.upstreams %} upstream {{ item.value.upstreams[upstream].name }} {