Skip to content

Commit

Permalink
Update _worker.js
Browse files Browse the repository at this point in the history
  • Loading branch information
yujiwh authored Mar 4, 2024
1 parent 01a9fda commit 299537c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { connect } from 'cloudflare:sockets';

// How to generate your own UUID:
// [Windows] Press "Win + R", input cmd and run: Powershell -NoExit -Command "[guid]::NewGuid()"
let userID = '0eed06f7-b281-4671-987a-9ffc1bd3bc78'; // Change this uuid before use this code!!
let userID = '0eed06f7-b281-4671-987a-9ffc1bd3bc78';

const proxyIPs = ['202.93.229.2', 'cdn.xn--b6gac.eu.org', 'cdn-all.xn--b6gac.eu.org', 'workers.bestip.one']; // Change or add new proxyIP right here!!
const proxyIPs = ['202.93.229.2', 'cdn.xn--b6gac.eu.org', 'cdn-all.xn--b6gac.eu.org', 'workers.bestip.one'];

// if you want to use ipv6 or single proxyIP, please add comment at this line and remove comment at the next line
let proxyIP = proxyIPs[Math.floor(Math.random() * proxyIPs.length)];
Expand Down

0 comments on commit 299537c

Please sign in to comment.