feat: Disallow access to /internal path of API

This commit is contained in:
Inex Code
2025-03-28 17:23:54 +03:00
parent d902a0f3f6
commit cdcc40d2a7

View File

@@ -55,6 +55,9 @@ in
proxyPass = "http://127.0.0.1:5050";
proxyWebsockets = true;
};
"/internal" = {
return = 403;
};
};
};
};