Appstore
JuliusBairaktaris opened this issue · 14 comments
When running easylist_pac.py the IOS Appstore gets blocked. Probably there is a whitelist rule needed
This shouldn’t happen—the last few commits explicitly allow all connections to Apple specified in https://support.apple.com/en-us/HT210060.
I confirm that have no such issues either on macOS or iOS.
Please update to the latest commit and then please check your proxy.pac
file to make sure that it’s using the latest rules, which bypass the proxy for these Apple domains and CIDRs. Also, if you’re using a squid proxy, please make sure that squid.conf
file also has the acl for Apple these destinations.
I just ran the easylist script as it is, and uploaded the Proxy.pac to my github repository. It is a fork of your repository so you can check the proxy.pac on my repo. But I don’t find any blacklist rules for Apple servers but AppStore and Apple Music are blocked.
I just ran the easylist script as it is, and uploaded the Proxy.pac to my github repository. It is a fork of your repository so you can check the proxy.pac on my repo. But I don’t find any blacklist rules for Apple servers but AppStore and Apple Music are blocked.
If this code isn’t in your proxy.pac
and proxy.pac.orig
then you’ll need to merge upstream and run it again, or troubleshoot why it’s not being added:
easylist-pac-privoxy/easylist_pac.py
Lines 684 to 732 in 429e49f
Oh sorry, the old file was still uploaded. I added the new one
Why did the issue get closed when it didnt get fixed?
How is it not fixed?
Can confirm that I am having the same issue. I am using the latest easy list_pac.py with those apple domains in that bypass. If I revert back to the easy list_pac.py file from April 3 (commit 3a2651f), I am then able to use the App Store again. I looked through the commit you made after and I still cannot figure out what is causing this.
If the PAC file you’re using explicitly goes direct to Apple and bypasses the proxy completely, why is the App Store being blocked?
Well to be honest I also dont know whats causing this issue. Maybe you should investigate it.
Well to be honest I also dont know whats causing this issue. Maybe you should investigate it.
Access to all Apple services including the App store has already been addressed here and in the squid configuration:
easylist-pac-privoxy/easylist_pac.py
Lines 684 to 732 in 429e49f
I cannot replicate the issue and without further information believe that this issue is specific to your own network, configuration, or possibly iOS version.
@starraiderx @28439 I was running into the App Store not working issue as well, I fixed it by changing the "PROXY localhost:3128" to "DIRECT" at the end of proxy.pac.
This should fix many other issues as well for jailbroken iOS devices using this approach, as critical system services will be able to directly connect instead of being proxied.
All those services work fine through a properly configured proxy.
Do you have a proxy running on localhost:3128
? If not, then that’d be the issue.
If you’re not using a proxy, then just use a simple proxy.pac.orig
with the flag --PAC-original
:
function FindProxyForURL(url, host)
{
return "DIRECT";
}