https://github.com/markelca/groxy
Building a simple proxy server in Go
https://github.com/markelca/groxy
Last synced: about 1 month ago
JSON representation
Building a simple proxy server in Go
- Host: GitHub
- URL: https://github.com/markelca/groxy
- Owner: MarkelCA
- Created: 2024-12-08T11:47:10.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-12-08T19:42:05.000Z (5 months ago)
- Last Synced: 2025-02-11T11:52:23.933Z (3 months ago)
- Language: Go
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# groxy
Building a simple proxy server in go.## Security
A self-signed certificate is generated for the server, just for testing purposes. It is not recommended to use this in production.
```
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -sha256 -days 3650 -nodes -subj "/C=XX/ST=StateName/L=CityName/O=CompanyName/OU=CompanySectionName/CN=CommonNameOrHostname"```