move int api to 3003

This commit is contained in:
miloschwartz
2025-10-19 11:56:46 -07:00
committed by Owen
parent a10fd91d65
commit 1d85fdc081
2 changed files with 4 additions and 4 deletions

View File

@@ -121,7 +121,7 @@ This section contains the complete reference for all configuration options in `c
<ResponseField name="integration_port" type="integer"> <ResponseField name="integration_port" type="integer">
The port for the integration API (optional). The port for the integration API (optional).
**Example**: `3004` **Example**: `3003`
</ResponseField> </ResponseField>
<ResponseField name="internal_hostname" type="string"> <ResponseField name="internal_hostname" type="string">

View File

@@ -14,11 +14,11 @@ flags:
enable_integration_api: true enable_integration_api: true
``` ```
If you want to specify a port other than the default `3004`, you can do so in the config as well: If you want to specify a port other than the default `3003`, you can do so in the config as well:
```yaml title="config.yml" ```yaml title="config.yml"
server: server:
integration_port: 3004 # Specify different port integration_port: 3003 # Specify different port
``` ```
## Configure Traefik Routing ## Configure Traefik Routing
@@ -49,7 +49,7 @@ Add the following configuration to your `config/traefik/dynamic_config.yml` to e
int-api-service: int-api-service:
loadBalancer: loadBalancer:
servers: servers:
- url: "http://pangolin:3004" - url: "http://pangolin:3003"
``` ```
## Access Documentation ## Access Documentation