Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

List of sites to access via proxy #1481

Open
LeoPadre opened this issue Sep 10, 2023 · 0 comments
Open

List of sites to access via proxy #1481

LeoPadre opened this issue Sep 10, 2023 · 0 comments

Comments

@LeoPadre
Copy link

Is your feature request related to a problem? Please describe.
It is possible to add sites to access indirectly, but I would like to add sites that would be accessed through a proxy, and the rest directly

Describe the solution you'd like
Setup similar to the existing one with adding domains for proxy access

Describe alternatives you've considered
Tried to set something like this up via custom rules, but it didn't work. For example, I tried this:

function FindProxyForURL( url, host ) {
    // Default to using no proxy.
    var ProxyConfig = "DIRECT";

    if( dnsDomainIs( host, "lostfilm.tv" ) ) {
        // Requested domain matches, let's use the proxy.
        ProxyConfig = "SOCKS5 127.0.0.1:1087";
    }

    return ProxyConfig;
}

But in Auto Mode by PAC, all domains still go through the proxy

Additional context
It is inconvenient to have all sites open through proxies, it is much more convenient to decide by yourself which domains will open through proxies, since there are few such sites, and exclude others quite a lot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant