From bc572233af5ddd538d7e7beed588d747bede9a7c 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 03:59:53 +0000 Subject: [PATCH] Change proxy path to /@/ instead of /proxy/ --- src/ProxyChief.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ProxyChief.js b/src/ProxyChief.js index d7436bf..03ade3e 100644 --- a/src/ProxyChief.js +++ b/src/ProxyChief.js @@ -24,13 +24,13 @@ function miniCPU() { // 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.get("/proxy/", function(req, res) { +app.get("/@/", function(req, res) { miniCPU(); }); app.get("/", function(req, res) { res.send( - '

ProxyChief

Proxy Format: /proxy/SITE-TO-VISIT

Made by youngchief btw ツ, with ❤️


This proxy is made to be the very best, and is super lightweight.


Access using any of these URLs

' + '

ProxyChief

Proxy Format: /@/SITE-TO-VISIT

Made by youngchief btw ツ, with ❤️


This proxy is made to be the very best, and is super lightweight.


Access using any of these URLs

' ); });