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
- Host: GitHub
- URL: https://github.com/a-poor/proximate
- Owner: a-poor
- License: mit
- Created: 2021-09-27T16:00:22.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-29T04:32:30.000Z (over 4 years ago)
- Last Synced: 2025-07-12T15:08:13.944Z (11 months ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```