From 229c7c0dcfc0d14a26ed55dbd14ee20bb664596f Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Mon, 5 May 2025 20:43:45 -0400 Subject: [PATCH] Add missing HOST environment var Added missing HOST environment var --- docs/self-hosting/configuration/envars.mdx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/self-hosting/configuration/envars.mdx b/docs/self-hosting/configuration/envars.mdx index d9eef9cb0..ae7c4ab33 100644 --- a/docs/self-hosting/configuration/envars.mdx +++ b/docs/self-hosting/configuration/envars.mdx @@ -29,6 +29,19 @@ Used to configure platform-specific security and operational settings Specifies the internal port on which the application listens. + + Specifies the network interface Infisical will bind to when accepting incoming connections. + + By default, Infisical binds to `localhost`, which restricts access to connections from the same machine. + + To make the application accessible externally (e.g., for self-hosted deployments), set this to `0.0.0.0`, which tells the server to listen on all network interfaces. + + Example values: + - `localhost` (default, same as `127.0.0.1`) + - `0.0.0.0` (all interfaces, accessible externally) + - `192.168.1.100` (specific interface IP) + + Telemetry helps us improve Infisical but if you want to disable it you may set this to `false`.