Skip to content

Dead simple reverse proxy for all your containerized needss

Notifications You must be signed in to change notification settings

s1ntaxe770r/pawxi

Repository files navigation

paw

Whats this ?

Pawxi is yet another reverse proxy designed with simplicity in mind. Born out of a certain users frustration at the complexity of setting up certain proxies.

Features ✨

  • GZIP compression ⚡

  • Live Reload 🔃

  • TLS termination ( coming soon! ) 🔥

Usage

Using the binary.

Create a pawxi.toml file

[proxy]
usegzip = "True"
binds = "8080"
routes = [
    {path="/",destination="https://localhost:6000/"},
    {path="/home",destination="https://localhost:5000"},
    {path="/app",destination="https://localhost:4000"},
]

usegzip -> enable or disable gzip

Binds -> what port should the proxy run on

routes -> paths you want to proxy to

Demo

demo