readme: add nginx file server directive

This commit is contained in:
Simon Ser 2021-11-27 12:26:25 +01:00
parent 0d2067e33e
commit d8d2cbe0f7

View file

@ -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;