setwafBypass — Temporarily disabling the Firewall & CDN
If it’s necessary to temporarily disable the Acceleration and Prevention features of the Firewall & CDN, it’s possible to place the site into "bypass" mode, where all requests are forwarded directly to the origin server. As a rule, when the bypass is on, the Firewall & CDN is off, and vice-versa.
The Firewall & CDN Bypass functions only on the After DNS configuration, the Firewall & CDN CNAME alias points to the standard If the site redirects requests for the |
Using the setWafBypass
request, you can enable or disable the Firewall & CDN bypass state.
-
When
bypass
isoff
-
and
use_true_shield
is0
, Firewall & CDN protection is turned off. -
and
use_true_speed
is0
, CDN caching is turned off.
-
-
When
bypass
is 'on'-
all requests are simply forwarded to the origin server, and
use_true_shield
anduse_true_speed
have no effect.
-
The API endpoint is:
https://api.sitelock.com/v1/partner
Request format
-
SiteLockOnlineRequest: This element is used to delineate the full API request.
-
authentication: The partner’s username, password, and branding
-
username: The partner’s API username
-
password: The partner’s API password
-
partner: (Optional) The brand name to use in messaging
-
-
setWafBypass: The method name
-
site_id: The ID of the site for which the bypass is to be modified
-
bypass: The bypass status: either
off
oron
-
use_true_shield: The Firewall & CDN protection status. The possible values are
1
(enabled) and0
(disabled) -
use_true_speed: The CDN caching status. The possible values are
1
(enabled) and0
(disabled)
-
-
Example request
<SiteLockOnlineRequest>
<authentication>
<user>Username</user>
<password>Password</password>
</authentication>
<setWafBypass>
<site_id>1234567</site_id>
<bypass>on</bypass>
<use_true_shield>0</use_true_shield>
<use_true_speed>1</use_true_speed>
</setWafBypass>
</SiteLockOnlineRequest>