From d8d2cbe0f73bacd83667544d77a9d4e902265488 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Sat, 27 Nov 2021 12:26:25 +0100 Subject: [PATCH] readme: add nginx file server directive --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index da66a5e..0281cb7 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,10 @@ If you use nginx as a reverse HTTP proxy, make sure to bump the default read timeout to a value higher than the IRC server PING interval. Example: ``` +location / { + root /path/to/gamja; +} + location /socket { proxy_pass http://127.0.0.1:8080; proxy_read_timeout 600s;