From 21123ae80c2bd6f4acd785f3c974edcfc51acfcb Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Sun, 19 Oct 2025 11:56:46 -0700 Subject: [PATCH] move int api to 3003 --- self-host/advanced/config-file.mdx | 2 +- self-host/advanced/integration-api.mdx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/self-host/advanced/config-file.mdx b/self-host/advanced/config-file.mdx index 8918028..4c47916 100644 --- a/self-host/advanced/config-file.mdx +++ b/self-host/advanced/config-file.mdx @@ -121,7 +121,7 @@ This section contains the complete reference for all configuration options in `c The port for the integration API (optional). - **Example**: `3004` + **Example**: `3003` diff --git a/self-host/advanced/integration-api.mdx b/self-host/advanced/integration-api.mdx index 5f1cac3..207707d 100644 --- a/self-host/advanced/integration-api.mdx +++ b/self-host/advanced/integration-api.mdx @@ -14,11 +14,11 @@ flags: 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" server: - integration_port: 3004 # Specify different port + integration_port: 3003 # Specify different port ``` ## Configure Traefik Routing @@ -49,7 +49,7 @@ Add the following configuration to your `config/traefik/dynamic_config.yml` to e int-api-service: loadBalancer: servers: - - url: "http://pangolin:3004" + - url: "http://pangolin:3003" ``` ## Access Documentation