When trying to access a website, which may have worked in the past from the same client, one of the following errors may appear:
- Session timeout
- You tried to enter an existing session with an invalid IP address or environment.
One reason for this behavior is that AWS external IPs are dynamic and can change. The attempted access to the website does not recognise the request.
To set an exclusion for a particular website:
- Go to Administration > PAC files.
-
-
Add the following variable to the first function to the PAC file you are currently using:
var SkipHosts = ["*examplewebsite.com"];
-
Add the following "for" request outside the function:
for (var i in SkipHosts) {
if (shExpMatch(host, SkipHosts[i])) {
return 'DIRECT';
}
}
-