Compare commits
3 Commits
8106f5b1a1
...
36a1b08052
| Author | SHA1 | Date | |
|---|---|---|---|
|
36a1b08052
|
|||
|
9d902dce55
|
|||
|
f15cfec74f
|
@@ -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 |
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user