Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: apify/proxy-chain
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a507021
Choose a base ref
...
head repository: apify/proxy-chain
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bad3172
Choose a head ref
  • 2 commits
  • 22 files changed
  • 2 contributors

Commits on Mar 21, 2025

  1. Configuration menu
    Copy the full SHA
    16bca47 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2025

  1. Add HTTPS upstream proxy support with option to ignore proxy cert err…

    …ors (#577)
    
    This PR adds support for a new boolean option `ignoreProxyCertificate`. If set to `true`, certificate errors will be ignored, which can be useful for HTTPS proxies with self-signed certificates.
    
    Usage:
    
    ```
    const server = new Server({
      prepareRequestFunction: () => ({
        upstreamProxyUrl: 'https://user:pass@myproxy:8080',
        ignoreUpstreamProxyCertificate: true  // Useful for self-signed cert
      })
    }).listen();
    ```
    Anonymize:
    ```
    anonymizeProxy({
      url: 'https://user:pass@myproxy:8080',
      ignoreProxyCertificate: true,
    }).then((anonymizedURL) => {
      console.log(`Anonymized URL: ${anonymizedURL}`);
    });
    ```
    Create tunnel:
    ```
    createTunnel(
      'https://user:pass@myproxy:8080',
      targetHost,
      { ignoreProxyCertificate: true }
    ).then((url) => {
      console.log('Tunnel endpoint:', url);
    });
    ```
    patrickkfkan authored Mar 28, 2025
    Configuration menu
    Copy the full SHA
    bad3172 View commit details
    Browse the repository at this point in the history
Loading