An open API service indexing awesome lists of open source software.

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

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: ""
```