https://github.com/zperf/webhook-proxy
Deliver webhooks with http proxy
https://github.com/zperf/webhook-proxy
Last synced: 5 months ago
JSON representation
Deliver webhooks with http proxy
- Host: GitHub
- URL: https://github.com/zperf/webhook-proxy
- Owner: zperf
- Created: 2024-11-13T06:13:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-13T08:28:43.000Z (over 1 year ago)
- Last Synced: 2024-11-28T05:38:52.052Z (over 1 year ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WebHook Proxy
## Usage
Start proxy at `http://127.0.0.1:4000`, assume http proxy is running at `http://127.0.0.1:8899`
```bash
go run main.go
```
It will forward
```
http://127.0.0.1:4000/hooks.foo.bar/abc123
```
To
```
https://hooks.foo.bar/abc123
```
For more flags, type `go run main.go --help`