Change proxy path to /@/ instead of /proxy/

This commit is contained in:
youngchief btw ツ 2020-04-19 04:01:04 +00:00
parent bc572233af
commit 25aa31477f
1 changed files with 1 additions and 1 deletions

View File

@ -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();
});