FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

frogfork/vercel-proxy: Simple http proxy for Vercel. · GitHub

 
 

Repository files navigation

Vercel Proxy

Simple http proxy for Vercel.

Delpoy

Docker

docker run -d --name vercel-proxy -p 3000:3000 ghcr.io/tbxark/vercel-proxy:latest

Or with docker compose:

docker compose up -d

To customize behavior, mount a JSON config file and pass --config:

docker run -d --name vercel-proxy -p 3000:3000 \
  -v $(pwd)/config.json:/config/config.json \
  ghcr.io/tbxark/vercel-proxy:latest --addr :3000 --config /config/config.json

Usage

fetch("https://project-name.vercel.app/https://example.com?param1=value1&param2=value2")
.then((res) => res.text())
.then(console.log.bind(console))
.catch(console.error.bind(console));
curl -L https://project-name.vercel.app/https:/example.com?param1=value1&param2=value2

Just add https://project-name.vercel.app/ before the url you want to proxy.

License

vercel-proxy is released under the MIT license. See LICENSE for details.

About

Simple http proxy for Vercel.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages


Back | FazBrowse Home | New Git URL