https://github.com/makepad-fr/sfp
A simplistic forward proxy implementation in Go
https://github.com/makepad-fr/sfp
forward-proxy go proxy proxy-server
Last synced: 2 months ago
JSON representation
A simplistic forward proxy implementation in Go
- Host: GitHub
- URL: https://github.com/makepad-fr/sfp
- Owner: Makepad-fr
- License: apache-2.0
- Created: 2024-05-01T10:37:09.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-05T20:28:09.000Z (about 1 year ago)
- Last Synced: 2025-01-24T10:47:19.189Z (4 months ago)
- Topics: forward-proxy, go, proxy, proxy-server
- Language: Go
- Homepage: https://hub.docker.com/r/makepad/sfp
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple Forward Proxy
This is a very simplistic implementation of forward proxy in Go programming language.
## Prerequisites
- Go 1.22 or higher
- Make## Usage
### Build the project
```bash
make
```### Start the forward proxy server
```bash
./out/forward-proxy
```### Use the proxy server in a CURL
```bash
curl -x http://localhost:9090 https://google.com
```