I am in China and cannot access the solana devnet chain directly. How do I configure 'Connection' to use a local proxy
const connection = new Connection(clusterApiUrl('devnet'), { commitment: 'confirmed'});const feePayer = Keypair.fromSecretKey( bs58.decode("ekD6Sg9Df******A45ef") );(async () => { console.log(clusterApiUrl('devnet')); console.log('Public Key:', feePayer.publicKey.toString()); const airdropSignature = await connection.requestAirdrop( feePayer.publicKey, LAMPORTS_PER_SOL, // 1 SOL = 1,000,000,000 Lamports ); const balance = await connection.getBalance(feePayer.publicKey); console.log("balance (Lamports): ", balance);})();