From 82cc25ba32bbe8d070d8a36526b10923259f2ac6 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Sun, 16 Aug 2020 16:34:41 +0100 Subject: [PATCH] xcaddy: add page (#4259) --- pages/common/xcaddy.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/xcaddy.md diff --git a/pages/common/xcaddy.md b/pages/common/xcaddy.md new file mode 100644 index 000000000..ad69f9cf3 --- /dev/null +++ b/pages/common/xcaddy.md @@ -0,0 +1,28 @@ +# xcaddy + +> The custom build tool for the Caddy Web Server. +> More information: . + +- Build Caddy server from source: + +`xcaddy build` + +- Build Caddy server with a specific version (defaults to latest): + +`xcaddy build {{version}}` + +- Build Caddy with a specific module: + +`xcaddy build --with {{module_name}}` + +- Build Caddy and output to a specific file: + +`xcaddy build --output {{path/to/file}}` + +- Build and run Caddy for a development plugin in the current directory: + +`xcaddy run` + +- Build and run Caddy for a development plugin using a specific Caddy config: + +`xcaddy run --config {{path/to/file}}`