# app-relay **Repository Path**: mirrors_cloudflare/app-relay ## Basic Information - **Project Name**: app-relay - **Description**: A Oblivious HTTP ("OHTTP") Relay built on Cloudflare Workers. - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-06-24 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Privacy Gateway Relay This Cloudflare Worker implements an [Oblivious HTTP](https://datatracker.ietf.org/doc/draft-ietf-ohai-ohttp/) relay. Usage of this relay adheres to the HTTP usage described [in the draft specification](https://datatracker.ietf.org/doc/html/draft-ietf-ohai-ohttp-01#section-6). The functionality here is subject to change. ## Configuration The relay is configured to forward all requests to the URL identified by the `TARGET` environment variable, configured in the wrangler.toml file. ``` vars = { TARGET = "https://ohttp-echo.crypto-team.workers.dev/echo-bytes" } ``` Currently, the default wrangler.toml file points to "https://ohttp-echo.crypto-team.workers.dev/echo-bytes", which means that all requests sent to this Worker will be forwarded to this endpoint. ## Deployment Deployment is simple. Modify the wrangler.toml file to point to your account (and zone), and then publish. ``` $ wrangler publish ```