HTTP
You can apply Gateway HTTP and DNS policies at the browser level by configuring a Proxy Auto-Configuration (PAC) file.
A PAC file isa file containing a JavaScript function which can instruct a browser to forward traffic to a proxy server instead of directly to the destination server.
When end users visit a website, their browser will send the request to a Cloudflare proxy server associated with your account to be filtered by Gateway. Note that Gateway cannot filter every type of HTTP traffic proxied using PAC files.
Install a Cloudflare certificate on your device.
You can generate a proxy endpoint on the Zero Trust dashboard or through the Cloudflare API.
-
In Zero Trust ↗, go to Gateway > Proxy endpoints.
-
Select Create endpoint.
-
Give your endpoint any name.
-
Enter the public source IP address of your device(s) in CIDR notation. For example:
- IPv4:
192.0.2.0/8
- IPv6:
2001:0db8:0000:0000:0000:1234:5678:0000/109
- IPv4:
-
Select Save endpoint and confirm the endpoint creation.
Your Cloudflare proxy server domain is of the form:
-
Create a proxy endpoint with the following call:
Replace
<PUBLIC_IP>
with the source IP address of your device in CIDR notation. For example:- IPv4:
192.0.2.0/8
- IPv6:
2001:0db8:0000:0000:0000:1234:5678:0000/32
- IPv4:
-
After running the call, you should see an output similar to
Note the
subdomain
value returned by the API. Your Cloudflare proxy server domain is of the form:In the example above, the subdomain is
3ele0ss56t
and the proxy server domain is3ele0ss56t.proxy.cloudflare-gateway.com
.
-
In Zero Trust ↗, create an HTTP policy for testing purposes. For example:
Selector Operator Value Action Domain in example.com
Block -
Verify that nothing is returned by a
curl
command:
If curl
returns a 403
code, it means the public IP of your device does not match the one used to generate the proxy server. Make sure that WARP is turned off on your device and double-check that curl
is not using IPv6 (use the -4
option to force IPv4).
A PAC file is a text file that specifies which traffic should redirect to the proxy server.
Below is the default PAC file. You can customize the file ↗ and host it somewhere your browser can access, such as on an internal web server or on Cloudflare Workers.
All major browsers support PAC files. You can configure individual browsers, or you can configure system settings that apply to all browsers on the device. Multiple devices can call the same PAC file as long as their source IP addresses were included in the proxy endpoint configuration.
Chromium-based browsers
Chromium-based browsers (such as Google Chrome, Microsoft Edge, and Brave) rely on your operating system’s proxy server settings. To configure your browser to use Gateway with PAC files, refer to the macOS ↗ or Windows ↗ documentation.
Mozilla Firefox
- In Firefox, go to Settings and scroll down to Network Settings.
- Select Settings.
- Select Automatic proxy configuration URL.
- Enter the URL where your PAC file is hosted, for example
https://proxy-pac.cflr.workers.dev/3ele0ss56t.pac
. - Select OK. HTTP traffic from Firefox is now being filtered by Gateway.
Safari
Safari relies on your operating system’s proxy server settings. To configure your browser to use Gateway with PAC files, refer to the macOS documentation ↗.
To test your configuration, you can test any supported HTTP policy, such as the example policy created in Step 2. When you go to https://example.com
in your browser, you should see the Gateway block page.
You can now use the Proxy Endpoint selector in network and HTTP policies to filter traffic proxied via PAC files.
At this time, the agentless HTTP proxy does not support identity-based policies, mTLS authentication, or UDP traffic. To enforce HTTP policies for UDP traffic, you must disable QUIC in your users’ browsers.
Gateway DNS and resolver policies will always apply to traffic proxied via PAC files, regardless of device configuration.