Skip to main content
By default, Snitcher’s tracker sends data to radar.snitcher.com and loads scripts from cdn.snitcher.com. While this works for most websites, some visitors use ad-blockers or privacy tools that may block requests to third-party tracking domains. First-party tracking solves this by routing all Snitcher traffic through your own domain, making it indistinguishable from your website’s regular traffic.

Why Use First-Party Tracking?

Bypass Ad-Blockers

Requests to your-domain.com aren’t blocked by tools that target third-party trackers.

Higher Data Quality

Capture more pageviews, sessions, and identified users.

First-Party Cookies

Cookies set by your domain have longer lifespans and better browser support.

Privacy Compliance

All data flows through your infrastructure, giving you full control.

How It Works

Instead of:
With first-party tracking:
You set up a reverse proxy on your domain that forwards requests to Snitcher’s servers. The tracker is configured to use your domain instead of ours.

Setup Overview

You’ll need to configure two proxies:
Avoid subdomains containing words like analytics, tracking, or pixel—some ad-blockers target these patterns. Use neutral names like api, cdn, or your company abbreviation.

CloudFront Setup (AWS)

CloudFront is a popular choice for proxying because it’s fast, reliable, and easy to configure.

Step 1: Create SSL Certificates

If using Route 53 for DNS, create certificates for your proxy domains:
  1. Go to AWS Certificate Manager in us-east-1 (required for CloudFront)
  2. Request certificates for:
    • cdn.yoursite.com
    • tracking.yoursite.com
  3. Validate via DNS

Step 2: Create CloudFront Distribution for the API

  1. Go to CloudFrontCreate Distribution
  2. Configure the origin:
    • Origin Domain: radar.snitcher.com
    • Protocol: HTTPS Only
  3. Configure cache behavior:
    • Viewer Protocol Policy: Redirect HTTP to HTTPS
    • Allowed HTTP Methods: GET, HEAD, OPTIONS, PUT, POST, PATCH, DELETE
    • Cache Policy: CachingDisabled
  4. Create an Origin Request Policy that forwards:
    • Headers: Origin, Accept, User-Agent, Content-Type
    • Query strings: All
    • Cookies: All
  5. Under Settings:
    • Add alternate domain name: tracking.yoursite.com
    • Select your SSL certificate
  6. Create the distribution

Step 3: Create CloudFront Distribution for the CDN

Repeat the process for the CDN:
  1. Origin Domain: cdn.snitcher.com
  2. Alternate Domain: cdn.yoursite.com
  3. Use default caching (scripts can be cached)
  4. Select your SSL certificate

Step 4: Configure DNS

Create CNAME records pointing to your CloudFront distributions:

Step 5: Update Your Tracking Script

Modify your Snitcher tracking script to use your proxy domains:
Note the changes:
  • apiEndpoint: Your API proxy domain
  • cdn: Your CDN proxy domain

Nginx Setup

If you’re running your own infrastructure, nginx is a lightweight proxy option.

Nginx Configuration

Vercel Rewrites

For Next.js sites on Vercel, use rewrites in next.config.js:
Then update your tracking script:

Netlify Redirects

Add to your netlify.toml:

Testing Your Setup

After configuration, verify everything works:

1. Test the CDN Proxy

You should receive a 200 OK response with JavaScript content.

2. Test the API Proxy

You should receive a successful response.

3. Check Browser Network Tab

  1. Visit your website
  2. Open Developer Tools → Network
  3. Look for requests to your proxy domains
  4. Verify no requests go to *.snitcher.com

Troubleshooting

  • Clear your browser cache
  • Verify your tracking script has the correct apiEndpoint and cdn values
  • Check that DNS has propagated: dig cdn.yoursite.com
Ensure your proxy forwards the Origin header and returns appropriate CORS headers. CloudFront handles this automatically with the right origin request policy.
  • Verify certificates are valid and not expired
  • For CloudFront, certificates must be in us-east-1
  • Ensure the certificate covers your proxy subdomain
Cloudflare doesn’t support cross-account proxying. If your main domain is on Cloudflare, use a different CDN (CloudFront, Fastly) for the proxy, or use a different subdomain not on Cloudflare.

Next Steps

Verify Installation

Confirm tracking is working

Cookie Consent

GDPR-compliant setup