Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 539 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 539 Bytes

kolide-unbound-buildpack

This buildpack configures unbound to run as a daemon on Heroku.

It expects that the apt buildpack has already run, with an Aptfile with the following contents:

unbound
libpython3.10

It also expects a Heroku config var UNBOUND_JSON to be set, with valid JSON in the following format:

{
    "forward": [
        {
            "zone": "<zone-here>",
            "addrs": [
                "<ip-addr-here>"
            ]
        }
    ]
}