mirror of
https://github.com/umputun/reproxy.git
synced 2024-11-24 08:12:31 +02:00
mor readme info about health checks
This commit is contained in:
parent
1e7f940b01
commit
eb672a1b41
17
README.md
17
README.md
@ -1,7 +1,8 @@
|
||||
# reproxy [![build](https://github.com/umputun/reproxy/actions/workflows/ci.yml/badge.svg)](https://github.com/umputun/reproxy/actions/workflows/ci.yml)
|
||||
|
||||
Reproxy is simple edge HTTP(s) sever / reverse proxy for various providers (docker, static, file). One or more providers supply information
|
||||
about requested server, requested url and destination url. Distributed as a single binary or as a docker container.
|
||||
Reproxy is simple edge HTTP(s) sever / reverse proxy supporting various providers (docker, static, file).
|
||||
One or more providers supply information about requested server, requested url, destination url and health check url.
|
||||
Distributed as a single binary or as a docker container.
|
||||
|
||||
Server can be set as FQDN, i.e. `s.example.com` or `*` (catch all). Requested url can be regex, for example `^/api/(.*)` and destination url
|
||||
may have regex matched groups, i.e. `http://d.example.com:8080/$1`. For the example above `http://s.example.com/api/something?foo=bar` will be proxied to `http://d.example.com:8080/something?foo=bar`.
|
||||
@ -16,6 +17,11 @@ Starting reproxy requires at least one provider defined. The rest of parameters
|
||||
|
||||
example with a static provider: `reproxy --static.enabled --rule="example.com/api/(.*),https://api.example.com/$1"`
|
||||
|
||||
## Install
|
||||
|
||||
- for a binary distribution pick the proper file in release section
|
||||
- docker container available via docker hub (umputun/reproxy) as well as via github container registry (ghcr.io/umputun/reproxy). Latest stable version has `:vX.Y.Z` tag (with `:latest` alias) and the current master has `:master` tag.
|
||||
|
||||
## Providers
|
||||
|
||||
User can sets multiple providers at the same time.
|
||||
@ -78,6 +84,13 @@ User may turn assets server on (off by default) to serve static files. As long a
|
||||
- `--max=N` allows to set the maximum size of request (default 64k)
|
||||
- `--header` sets extra header(s) added to each proxied request
|
||||
|
||||
## Ping and health checks
|
||||
|
||||
reproxy provides 2 endpoints for this purpose:
|
||||
|
||||
- `/ping` responds with `pong` and indicates what reproxy up and running
|
||||
- `/health` returns `200 OK` status if all destination servers responded to their ping request with `200` or `417 Expectation Failed` if any of servers responded with non-200 code. It also returns json body with details about passed/failed services.
|
||||
|
||||
## All Application Options
|
||||
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user