From 25aa31477fff5bb35b85ef4775a5d4a7b70d40a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?youngchief=20btw=20=E3=83=84?= <33383463+youngchief-btw@users.noreply.github.com> Date: Sun, 19 Apr 2020 04:01:04 +0000 Subject: [PATCH] Change proxy path to /@/ instead of /proxy/ --- src/ProxyChief.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProxyChief.js b/src/ProxyChief.js index 03ade3e..80be823 100644 --- a/src/ProxyChief.js +++ b/src/ProxyChief.js @@ -23,7 +23,7 @@ function miniCPU() { // https.createServer(null, app).listen(443); // this must be one of the first app.use() calls and must not be on a subdirectory to work properly -app.use(new Unblocker({ prefix: "/proxy/" })); +app.use(new Unblocker({ prefix: "/@/" })); app.get("/@/", function(req, res) { miniCPU(); });