> ## Documentation Index
> Fetch the complete documentation index at: https://docs.veriox.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Step 3 — Configure Your Route

> Route traffic from your domain through the Veriox worker.

The worker is deployed but not yet connected to your domain. This step tells Cloudflare to run your Veriox worker whenever someone visits your site. Cloudflare calls these [Worker Routes](https://developers.cloudflare.com/workers/configuration/routing/routes/) — the link has the full reference if you need it, but the steps below cover everything you need.

<Steps>
  <Step title="Open your worker settings">
    In the Cloudflare dashboard, go to **Workers & Pages** → click your Veriox worker → **Settings** → **Triggers**.
  </Step>

  <Step title="Add a route">
    Click **Add Route** and enter the pattern for the pages you want to protect.

    **To protect your entire site:**

    ```
    yourdomain.com/*
    ```

    **To protect a specific section only:**

    ```
    yourdomain.com/members/*
    ```

    Replace `yourdomain.com` with your actual domain. Select the correct **Zone** (your domain) from the dropdown, then click **Save**.
  </Step>

  <Step title="Confirm Cloudflare proxying is enabled">
    Go to **DNS** in the Cloudflare sidebar. Find the A or CNAME record for your domain and make sure the cloud icon is **orange** (proxied). If it is grey, click it to enable proxying.

    <Warning>
      If the DNS record is grey (DNS only), your worker will not run and Veriox will not function.
    </Warning>
  </Step>
</Steps>

<Card title="Next: Test your integration" icon="arrow-right" href="/installation-dashboard/testing">
  Verify everything is working before going live.
</Card>
