ToolsXpo

DevOps & Config

Caddyfile Configuration Generator API

GET request to /v1/caddyfile-generator, returning text in the standard envelope.

GET/v1/caddyfile-generator2 credits / call Free tier

Authentication

Send your API key as a bearer token. Create one free in the dashboard.

Authorization: Bearer $TOOLSXPO_KEY

Parameters

Sent as query-string parameters. The values below are the examples used throughout this page.

NameExample value
siteModereverse-proxy
domainapp.example.com
emailops@example.com
rootPath/srv/www/app
upstream127.0.0.1:3000
enableCompressiontrue
enableSecurityHeaderstrue
enableSpaFallbackfalse

Example request

curl "https://api.toolsxpo.com/v1/caddyfile-generator?siteMode=reverse-proxy&domain=app.example.com&email=ops%40example.com&rootPath=%2Fsrv%2Fwww%2Fapp&upstream=127.0.0.1%3A3000&enableCompression=true&enableSecurityHeaders=true&enableSpaFallback=false" \
  -H "Authorization: Bearer $TOOLSXPO_KEY"

Response

Every endpoint answers with the same envelope. The result is in data (text); meta.credits reports what the call cost.

{
  "ok": true,
  "data": { /* text */ },
  "meta": { "credits": 2 }
}

Errors

Failures use the same envelope with ok: false and a machine-readable code.

StatusCodeMeaning
400invalid_inputA parameter failed validation. `details` lists which.
401unauthorizedMissing or invalid API key.
402quota_exceededOut of credits on this workspace.
404not_foundNo such tool.
429rate_limitedToo many requests. Retry after `Retry-After` seconds.
503service_unavailableTemporarily disabled by an administrator.