From f795b4b089bbf47c88738ffad9ab842ff58bfb12 Mon Sep 17 00:00:00 2001 From: Umputun <umputun@gmail.com> Date: Sun, 26 Nov 2023 01:19:13 -0600 Subject: [PATCH] add more info and fix typos --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8f47e0ed..37522023 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,9 @@ Reproxy is a simple edge HTTP(s) server / reverse proxy supporting various provi - Dynamic, file-based proxy rules provider - Docker provider with an automatic discovery - Consul Catalog provider with discovery by service tags -- Support of multiple (virtual) hosts +- Support for multiple (virtual) hosts - Optional traffic compression +- Optional IP-based access control - User-defined size limits and timeouts - Single binary distribution - Docker container distribution @@ -252,7 +253,7 @@ supported codes: In order to eliminate the need to pass custom params/environment, the default `--listen` is dynamic and trying to be reasonable and helpful for the typical cases: - If anything set by users to `--listen` all the logic below ignored and host:port passed in and used directly. -- If nothing set by users to `--listen` and reproxy runs outside of the docker container, the default is `127.0.0.1:80` for http mode (`ssl.type=none`) and `127.0.0.1:443` for ssl mode (`ssl.type=auto` or `ssl.type=static`). +- If nothing set by users to `--listen` and reproxy runs outside the docker container, the default is `127.0.0.1:80` for http mode (`ssl.type=none`) and `127.0.0.1:443` for ssl mode (`ssl.type=auto` or `ssl.type=static`). - If nothing set by users to `--listen` and reproxy runs inside the docker, the default is `0.0.0.0:8080` for http mode, and `0.0.0.0:8443` for ssl mode. Another default set in the similar dynamic way is `--ssl.http-port`. For run inside of the docker container it set to `8080` and without to `80`.