summaryrefslogtreecommitdiff
path: root/docker/nginx/default.conf
diff options
context:
space:
mode:
Diffstat (limited to 'docker/nginx/default.conf')
-rw-r--r--docker/nginx/default.conf11
1 files changed, 11 insertions, 0 deletions
diff --git a/docker/nginx/default.conf b/docker/nginx/default.conf
new file mode 100644
index 0000000..a734b0e
--- /dev/null
+++ b/docker/nginx/default.conf
@@ -0,0 +1,11 @@
+server {
+ listen 80;
+ server_name _;
+
+ access_log /var/log/nginx/access.log;
+ error_log /var/log/nginx/error.log warn;
+
+ location / {
+ proxy_pass http://collector:8000;
+ }
+} \ No newline at end of file