HTTP Server
Listens for incoming HTTP POST requests and ingests their bodies.
Configuration
yaml
source:
kind: http_server
listen_address: "0.0.0.0:8080"
path: "/"| Field | Default | Description |
|---|---|---|
listen_address | 0.0.0.0:8080 | Address to bind the HTTP server |
path | / | URL path to listen on |
auth_token | Optional Bearer token for authentication |
Namespace: http_server.{path}
CLI
bash
skippr connect source http-server \
--listen-address 0.0.0.0:8080 \
--path /webhook| Flag | Description |
|---|---|
--listen-address | Address to bind (default: 0.0.0.0:8080) |
--path | URL path to listen on |
