How to Whitelist GoKwik IP Addresses

Created by Amit Adhikary, Modified on Wed, 8 Apr at 11:28 AM by Amit Adhikary

? Purpose


This guide helps you whitelist GoKwik IP addresses to ensure that checkout requests are not blocked by security layers like Cloudflare or server firewalls.

? When is this required?


You may need to whitelist IPs if:

  • GoKwik checkout is not loading
  • Checkout redirects to native WooCommerce
  • Only COD is visible
  • API calls are failing / blocked

? GoKwik IP Addresses


Please whitelist the following:

  • Sandbox (Testing): 13.200.124.145
  • Production (Live): 52.66.34.242

? Method 1: Cloudflare (Recommended)


Steps:

  1. Login to your Cloudflare Dashboard
  2. Select your website/domain
  3. Navigate to:
    ? Security → WAF → Tools
  4. Under IP Access Rules:
    • Enter IP: 13.200.124.145 → Action: Allow
    • Enter IP: 52.66.34.242 → Action: Allow
  5. Scope:
    ? Select This Website
  6. Click Add Rule

? Method 2: Cloudflare Firewall Rule (Advanced)

  1. Go to:
    ? Security → WAF → Custom Rules
  2. Create a new rule: ip.src in {13.200.124.145 52.66.34.242}
  3. Set Action: Allow


? Method 3: Hosting Server / Firewall


If your hosting provider has firewall protection (e.g., Hostinger, AWS, cPanel):


Steps:

  1. Login to hosting panel
  2. Navigate to: Security / Firewall / IP Manager
  3. Add the following IPs to Allowlist
  4. 13.200.124.145
    52.66.34.242
  5. Save changes



    ? Method 4: Apache (.htaccess)



    Add the following in .htaccess:


    <RequireAll>
    Require all granted
    Require ip 13.200.124.145
    Require ip 52.66.34.242
    </RequireAll>



    ? Method 5: Nginx



    Add the following in server config:


    allow 13.200.124.145;
    allow 52.66.34.242;
    deny all;



    ⚠️ Important Checklist

    After whitelisting:
    • Disable Cloudflare Bot Fight Mode
    • Clear website & CDN cache
    • Test checkout in Incognito mode
    • Ensure no firewall rules are blocking requests
    • ? Common Mistakes
    • Only whitelisting in Cloudflare (server firewall still blocking)
    • Bot Fight Mode left enabled
    • Incorrect domain configuration (www vs non-www)
    • Cache not cleared


      ✅ Expected Outcome

      After successful whitelisting:
    • GoKwik checkout should load correctly
    • Payment options should display properly
    • API requests should no longer fail





Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article