The EdgeRules feature is available only on Enterprise plans.
The following example shows how to prevent caching for particular paths. Any other request would be seamlessly honored and cached.
Nginx configuration block
location / { set $nocache "0"; if ($request_uri ~ \/(scripts|includes)\/.*$) { set $nocache "1"; } … proxy_no_cache $nocache; … }
If you have any questions or experience any issues, please reach out to the Support Team, live chat and ticket support are available 24/7.