Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
/ qpoint-mask-urls Public archive

A Qpoint adapter for masking URLs behind a reverse proxy

License

Notifications You must be signed in to change notification settings

qpoint-io/qpoint-mask-urls

Repository files navigation

qpoint-mask-urls

A Qpoint adapter for masking URLs behind a reverse proxy

Overview

When proxying requests upstream, html links are generated for the upstream location.

Consider the following:

An app hosted on vercel would likely produce html with a link URL: https://qpoint-site.vercel.app/about-us

The proxy needs to mask the url to match the outer domain URL: https://qpoint.io/about-us

Usage

import Endpoint from "@qpoint/endpoint";
import proxy from "@qpoint/proxy";
import maskUrls from "@qpoint/mask-urls";
import rewriteHtml from "@qpoint/rewrite-html";

export default new Endpoint()
  // proxy to qpoint.io
  .use(proxy({ appUrl: "https://qpoint.io" }))

  // mask the urls to match the proxy endpoint
  .use(maskUrls())

  // activate the rewrite
  .use(rewriteHtml())

Installation

npm add @qpoint/mask-urls

Advanced

basePath can be provided with the config if the upstream app is nested within the path.