https://github.com/kujenga/simpleproxy
https://github.com/kujenga/simpleproxy
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kujenga/simpleproxy
- Owner: kujenga
- Created: 2017-02-03T17:18:53.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-13T14:10:53.000Z (about 8 years ago)
- Last Synced: 2025-01-24T12:45:39.348Z (4 months ago)
- Language: Go
- Size: 4.88 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# simpleproxy
A simple proxy tool that can be run locally to send requests to a remote URL. It's intended primarily as a collection of hacks for fixing snags in development processes.
Clone with:
```
go get github.com/kujenga/simpleproxy
```Run `simpleproxy -h` for usage information.
### Use cases:
- Communicating with a HTTP endpoint that doesn't support HTTPS on a domain that has [HSTS](https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security). Obviously the better option here is to add HTTPS to the endpoint.
- Adding basic authentication to all proxied requests. The better option here is to add real authentication support to your app, perhaps with something like [OpenID Connect](http://openid.net).