4 Commits

Author SHA1 Message Date
fcb9daa30c chore(changelog): update changelog for v0.5.0
All checks were successful
Build and upload Docker release image / upload-assets (release) Successful in 2m58s
2025-05-11 14:10:38 +00:00
36a1b08052 chore(version): bump version to 0.5.0
All checks were successful
Auto Changelog & Release / detect-version-change (push) Successful in 5s
Auto Changelog & Release / changelog-only (push) Has been skipped
Auto Changelog & Release / release (push) Successful in 10s
Build and upload Docker nightly image / build-and-push (push) Successful in 2m55s
2025-05-11 16:10:21 +02:00
9d902dce55 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
2025-05-11 16:10:20 +02:00
f15cfec74f feat(env): update default LanguageTool server port to 8081 2025-05-11 16:10:20 +02:00
4 changed files with 11 additions and 6 deletions

View File

@@ -2,10 +2,15 @@
All notable changes to this project will be documented in this file.
## [unreleased]
## [0.5.0](https://git.0xmax42.io/maxp/lt-auth-proxy/compare/v0.4.0..v0.5.0) - 2025-05-11
### 🚀 Features
- *(env)* Update default LanguageTool server port to 8081 - ([f15cfec](https://git.0xmax42.io/maxp/lt-auth-proxy/commit/f15cfec74f9fb8325e90c7acc40ff7a166b9f9df))
### 📚 Documentation
- Update LanguageTool backend port in README - ([9d902dc](https://git.0xmax42.io/maxp/lt-auth-proxy/commit/9d902dce55f12d274d3b9bd75cc3d3b0f75384c6))
- *(readme)* Update service configuration and license link - ([427cee1](https://git.0xmax42.io/maxp/lt-auth-proxy/commit/427cee188404b00ec30c8f52f4a66c4609511a8f))
- *(readme)* Update service configuration and license link - ([92b075d](https://git.0xmax42.io/maxp/lt-auth-proxy/commit/92b075df558d2d52da9496f74f84c149d3b18df5))
- *(readme)* Add project time badge - ([5597c2a](https://git.0xmax42.io/maxp/lt-auth-proxy/commit/5597c2ae3fa3920340499e0b5924b75352591729))

View File

@@ -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 |
---

View File

@@ -1 +1 @@
0.4.0
0.5.0

View File

@@ -53,10 +53,10 @@ export class Env {
return this._ltServerHost;
}
/** Port of the LanguageTool backend (default: 8010) */
/** Port of the LanguageTool backend (default: 8081) */
static get ltServerPort(): number {
if (this._ltServerPort === undefined) {
this._ltServerPort = Number(this.getEnv('LT_SERVER_PORT') || 8010);
this._ltServerPort = Number(this.getEnv('LT_SERVER_PORT') || 8081);
}
return this._ltServerPort;
}