https://github.com/zapling/golang-proxy
🔗 A simple reverse proxy written in Golang
https://github.com/zapling/golang-proxy
Last synced: 11 days ago
JSON representation
🔗 A simple reverse proxy written in Golang
- Host: GitHub
- URL: https://github.com/zapling/golang-proxy
- Owner: zapling
- Created: 2020-01-30T13:08:22.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-21T17:47:09.000Z (over 5 years ago)
- Last Synced: 2025-10-10T06:49:15.629Z (3 months ago)
- Language: Go
- Homepage:
- Size: 249 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# golang-proxy
Just a simple reverse proxy written in Go in order to get familiar with the Go syntax.

## Build
Compiling is really simple and will output one binary called `golang-proxy` into the `build/` folder.
```
make build
```
## Usage
```
golang-proxy [PORT] [TARGET]
Example: golang-proxy 5000 http://localhost:80
```
## License ([MIT](https://en.wikipedia.org/wiki/MIT_License))
```
Copyright (c) 2020 Andreas Palm
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```