diff options
Diffstat (limited to 'docs/Running-behind-nginx.md')
-rw-r--r-- | docs/Running-behind-nginx.md | 4 |
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; } ``` |