summaryrefslogtreecommitdiff
path: root/docker/collector/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'docker/collector/nginx.conf')
-rw-r--r--docker/collector/nginx.conf13
1 files changed, 13 insertions, 0 deletions
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