From 623a7bb11bfe730e90d91ff1626556bd7b148b5b Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 28 Feb 2020 12:44:52 +0900 Subject: [PATCH] Fix nginx.conf for collectd so it only listens on 127.0.0.1 --- monitor/nginx.conf | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/monitor/nginx.conf b/monitor/nginx.conf index 2ca6b96f375..fc1a962f148 100644 --- a/monitor/nginx.conf +++ b/monitor/nginx.conf @@ -16,9 +16,7 @@ stream { access_log syslog:server=unix:/dev/log basic; server { - listen 2003; - allow 127.0.0.1; - deny all; + listen 127.0.0.1:2003; proxy_pass monitor.bisq.network:2002; proxy_ssl on;