Skip to content

Commit

Permalink
feat(proxy): update free proxyIP addresses in proxy list
Browse files Browse the repository at this point in the history
The proxy IP addresses used in `_worker.js` have been updated. One of the initial addresses, `cdn-b100.xn--b6gac.eu.org`, has been removed and a new IP address, `23.162.136.169`, has been added to the list. The update may affect how requests are handled by the worker, as it will connect to different proxies depending on the updated list. Keep track of any performance changes or issues that may arise due to this modification.
  • Loading branch information
3Kmfi6HP committed Jan 4, 2024
1 parent 341cb6a commit 8e92a44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { connect } from 'cloudflare:sockets';
// [Windows] Press "Win + R", input cmd and run: Powershell -NoExit -Command "[guid]::NewGuid()"
let userID = 'd342d11e-d424-4583-b36e-524ab1f0afa4';

const proxyIPs = ['cdn-all.xn--b6gac.eu.org', 'cdn.xn--b6gac.eu.org', 'cdn-b100.xn--b6gac.eu.org', 'edgetunnel.anycast.eu.org', 'cdn.anycast.eu.org'];
const proxyIPs = ['23.162.136.169', 'cdn.xn--b6gac.eu.org', 'cdn-all.xn--b6gac.eu.org', 'edgetunnel.anycast.eu.org'];

let proxyIP = proxyIPs[Math.floor(Math.random() * proxyIPs.length)];

Expand Down

0 comments on commit 8e92a44

Please sign in to comment.