From 9d902dce55f12d274d3b9bd75cc3d3b0f75384c6 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sun, 11 May 2025 16:10:05 +0200 Subject: [PATCH] docs: update LanguageTool backend port in README - Change the default `LT_SERVER_PORT` from 8010 to 8081 in usage examples - Reflect the updated port in the environment variables table --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6e655e5..e30ee3b 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ You can run the proxy via Docker: docker run -p 8011:8011 \ -e API_KEYS="demo-key,another-key" \ -e LT_SERVER_HOST=lt-server \ - -e LT_SERVER_PORT=8010 \ + -e LT_SERVER_PORT=8081 \ git.0xmax42.io/simdev/lt-auth-proxy:latest ``` @@ -41,7 +41,7 @@ docker run -p 8011:8011 \ | `PROXY_HOST` | ❌ no | `0.0.0.0` | Host/IP address to bind the proxy to | | `PROXY_PORT` | ❌ no | `8011` | Port the proxy listens on | | `LT_SERVER_HOST` | ❌ no | `localhost` | Hostname of the LanguageTool backend | -| `LT_SERVER_PORT` | ❌ no | `8010` | Port of the LanguageTool backend | +| `LT_SERVER_PORT` | ❌ no | `8081` | Port of the LanguageTool backend | ---