knot 1.6.2

Codebase Graph + Vector RAG Indexer for Java, TypeScript, JavaScript, Kotlin, Rust, Python, Groovy, C/C++, Build Systems, and HTML/CSS codebases
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// VARNISH_SPHINX_TOKEN_INCLUDE_01 — included backends
backend included_backend_one {
    .host = "192.168.1.1";
    .port = "80";
    .probe = included_probe;
}

// VARNISH_SPHINX_TOKEN_PROBE_INCLUDE_01
probe included_probe {
    .url = "/api/health";
    .expected_response = 200;
}

// VARNISH_SPHINX_TOKEN_BACKEND_INCLUDE_02
backend included_backend_two {
    .host = "192.168.1.2";
    .port = "80";
}