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

https://github.com/a-poor/proximate

A reverse proxy written in Go
https://github.com/a-poor/proximate

Last synced: 11 months ago
JSON representation

A reverse proxy written in Go

Awesome Lists containing this project

README

          

# proximate

_created by Austin Poor_

Proximate is a reverse proxy written in Go.

## Sample Config File:

```yaml
---
proximate:
upstreams:
- name: backend
servers:
- localhost:8080
- localhost:8081
- localhost:8082
healthcheck:
- /health
server:
port: 80
routes:
- path: /
static: ./static
- path: /api/
forward_to: backend
```