From a931188b9e1f74a2ff19bd5390839f35066b21f1 Mon Sep 17 00:00:00 2001 From: Elijah R <62162399+elijahr2411@users.noreply.github.com> Date: Mon, 13 Feb 2023 18:52:42 -0500 Subject: [PATCH] Disable proxying by default (example config should work out of the box) --- config.example.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.example.toml b/config.example.toml index c4d7ae7..90ceb59 100644 --- a/config.example.toml +++ b/config.example.toml @@ -1,8 +1,8 @@ [http] -host = "127.0.0.1" +host = "0.0.0.0" port = 6004 # Whether the server is behind a reverse proxy, like NGINX -proxying = true +proxying = false # IPs allowed to access the server in proxy mode. # 99% of the time this will only be 127.0.0.1 proxyAllowedIps = ["127.0.0.1"]