summaryrefslogtreecommitdiffstats
path: root/docs/Running-behind-nginx.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2019-11-28 04:53:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2019-11-28 04:53:29 +0000
commit17c93e2be4ad7b3af0cd6878bdd5d8a4a3e6da99 (patch)
tree3e0c96613972e8bb4afdeeb97a034806363ddfa9 /docs/Running-behind-nginx.md
parentReleasing debian version 1.18.1-1. (diff)
downloadnetdata-17c93e2be4ad7b3af0cd6878bdd5d8a4a3e6da99.tar.xz
netdata-17c93e2be4ad7b3af0cd6878bdd5d8a4a3e6da99.zip
Merging upstream version 1.19.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'docs/Running-behind-nginx.md')
-rw-r--r--docs/Running-behind-nginx.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/Running-behind-nginx.md b/docs/Running-behind-nginx.md
index cad416263..99e5e601d 100644
--- a/docs/Running-behind-nginx.md
+++ b/docs/Running-behind-nginx.md
@@ -205,7 +205,7 @@ You can also use a unix domain socket. This will also provide a faster route bet
```
[web]
- bind to = unix:/tmp/netdata.sock
+ bind to = unix:/var/run/netdata/netdata.sock
```
*note: Netdata v1.8+ support unix domain sockets*
@@ -214,7 +214,7 @@ At the Nginx side, use something like this to use the same unix domain socket:
```conf
upstream backend {
- server unix:/tmp/netdata.sock;
+ server unix:/var/run/netdata/netdata.sock;
keepalive 64;
}
```