From 69fed87bd4a627b60d1c3d05852a6a3e6075c952 Mon Sep 17 00:00:00 2001 From: Kristofer Hallin Date: Wed, 6 Oct 2021 11:22:38 +0200 Subject: Added Collector container. --- docker/collector/nginx.conf | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 docker/collector/nginx.conf (limited to 'docker/collector/nginx.conf') diff --git a/docker/collector/nginx.conf b/docker/collector/nginx.conf new file mode 100644 index 0000000..8a816e4 --- /dev/null +++ b/docker/collector/nginx.conf @@ -0,0 +1,13 @@ +server { + listen 80; + server_name _; + + access_log /var/log/nginx/access.log; + error_log /var/log/nginx/error.log warn; + + location / { + include uwsgi_params; + uwsgi_pass uwsgi://localhost:8000; + + } +} \ No newline at end of file -- cgit v1.1