New to Nginx and consul template, but I think I have everything working except I am getting lots of noise (100 or so error messages every 15-30 seconds) in the form of errors in the logs. Seems like it is consul-template errors that it can't connect/fetch the data...but it does fetch the data and build the templates correctly. So, not sure what the issue is.
How can I fix the errors? Or if they are to be expected, how can I not log them to stdout/stderr which is cluttering my nginx logging.
Thanks, Dan
Errors (getting these messages over and over again for various APPs):
2017/01/17 20:07:35 [ERR] (view) "storeKeyPrefix(services/prod/SOMEAPP/SOMEKEY)" store key prefix: error fetching: Get http://consul.example.com:8500/v1/kv/services/prod/SOMEAPP/SOMEKEY/?index=13120537&recurse=&stale=&wait=60000ms: EOF
2017/01/17 20:07:35 [ERR] (runner) watcher reported error: store key prefix: error fetching: Get http://consul.example.com:8500/v1/kv/services/prod/SOMEAPP/SOMEKEY/?index=13120537&recurse=&stale=&wait=60000ms: EOF
Nginx dockerfile
FROM nginx:1.11.8
RUN rm /etc/nginx/conf.d/default.conf
COPY html /usr/share/nginx/html
COPY conf /etc/nginx
RUN DEBIAN_FRONTEND=noninteractive \
apt-get update -qq && \
apt-get -y install curl runit unzip && \
rm -rf /var/lib/apt/lists/*
ENV CT_URL https://releases.hashicorp.com/consul-template/0.15.0/consul-template_0.15.0_linux_amd64.zip
RUN curl -o consul-template.zip $CT_URL && \
unzip consul-template.zip && \
chmod a+x consul-template && \
mv consul-template /usr/bin/consul-template
ADD services/nginx.service /etc/service/nginx/run
RUN chmod a+x /etc/service/nginx/run
ADD services/consul-template.service /etc/service/consul-template/run
RUN chmod a+x /etc/service/consul-template/run
ADD templates/nginx-http-upstream.conf /etc/consul-templates/nginx-http.conf
ADD templates/nginx-tcp-upstream.conf /etc/consul-templates/nginx-tcp.conf
RUN touch /etc/nginx/conf.d/http.conf
RUN touch /etc/nginx/conf.d/tcp.conf
EXPOSE 80
EXPOSE 443
CMD ["/usr/bin/runsvdir", "/etc/service"]
services/nginx.service
#!/bin/sh
/usr/sbin/nginx -c /etc/nginx/nginx.conf -t && \
exec /usr/sbin/nginx -c /etc/nginx/nginx.conf -g "daemon off;"
services/consul-template.service
#!/bin/sh
exec consul-template \
-consul=$CONSUL_HOST:$CONSUL_PORT \
-log-level=warn \
-template "/etc/consul-templates/nginx-http.conf:/etc/nginx/conf.d/http.conf:sv hup nginx"\
-template "/etc/consul-templates/nginx-tcp.conf:/etc/nginx/conf.d/tcp.conf:sv hup nginx"