Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 717 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 717 Bytes

Application Routing / Reverse Proxy

Light-weight reverse proxy implemented by using Cloudflare Workers.

  • https://example.com/, /about, /pricing, /blog/*, etc.
    ↳ Routed to https://example.webflow.io

  • https://example.com/help/*
    ↳ Routed to https://intercom.help

  • https://example.com/graphql, /auth/google, /auth/google/return etc.
    ↳ Routed to the GraphQL API server (Google Cloud Function or Cloud Run)

  • https://example.com/admin/*
    ↳ Routed to the admin dashboard (Cloudflare Workers Site)

  • https://example.com/* the rest of the pages
    ↳ Routed to the main web application (Google Storage bucket or similar)