From 5343660779241a2935ad5983640b34e16c71485e Mon Sep 17 00:00:00 2001 From: Tenghuan He Date: Sun, 8 Jun 2025 19:21:30 +0800 Subject: [PATCH] Fix config extension typo in Windows command (from-source.md) Corrects the configuration file extension in the Windows startup command for Vector. The original command `.\target\release\vector --config config\vector.toml` incorrectly used TOML extension, while Vector's actual config file is YAML format. --- .../content/en/docs/setup/installation/manual/from-source.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/en/docs/setup/installation/manual/from-source.md b/website/content/en/docs/setup/installation/manual/from-source.md index c1c2b27efae25..4df7017e00fb2 100644 --- a/website/content/en/docs/setup/installation/manual/from-source.md +++ b/website/content/en/docs/setup/installation/manual/from-source.md @@ -101,7 +101,7 @@ cargo build --no-default-features --features default-msvc --release Start Vector. After these steps, a binary `vector.exe` in `target\release` would be created. It can be started by running: ```powershell -.\target\release\vector --config config\vector.toml +.\target\release\vector --config config\vector.yaml ``` ### Docker