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

' ); });