https://github.com/tkc/go_gemini_proxy_server
This project implements a proxy server for the Gemini protocol using Go
https://github.com/tkc/go_gemini_proxy_server
gcp gemini go proxy-server
Last synced: 18 days ago
JSON representation
This project implements a proxy server for the Gemini protocol using Go
- Host: GitHub
- URL: https://github.com/tkc/go_gemini_proxy_server
- Owner: tkc
- License: mit
- Created: 2024-07-04T04:28:07.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-14T19:49:06.000Z (over 1 year ago)
- Last Synced: 2025-12-13T01:34:47.617Z (6 months ago)
- Topics: gcp, gemini, go, proxy-server
- Language: Go
- Homepage:
- Size: 4.72 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go_gemini_proxy
This project implements a proxy server for the Gemini protocol using Go. The server redirects Gemini requests to a specified target server and logs requests and responses.
## Features
- Redirects requests to a specified target server
- Logs requests and responses to separate files
- Configurable via a YAML file
## Configuration
Create a `config.yaml` file in the project root directory with the following content:
```yaml
port: "8080"
target_server: ""
```