Nomploy Nomad Packs

← All packs

byparr v0.1.0

Networking

Byparr — a drop-in FlareSolverr replacement that solves Cloudflare and other anti-bot challenges via a headless browser, exposing a simple API for indexers and scrapers. Deployed as a single stateless host-networked Nomad service.

nomad-pack run byparr --registry nomploy
…or one line (add registry + run)
curl -fsSL https://packs.nomploy.com/install.sh | sh -s -- byparr

Needs nomad-pack on PATH. The script only adds the nomploy registry and runs this pack.

1 task http 8191 image ghcr.io/thephaseless/byparr:latest tracks :latest image bumped today
Variables 7
values.hcl

Save as values.hcl, edit, then run:

nomad-pack run byparr -f values.hcl --registry nomploy
# The name of the Nomad job.
job_name = "byparr"

# The Nomad namespace to deploy into.
namespace = "default"

# The datacenters to deploy to.
datacenters = ["*"]

# The Byparr container image. Pin a tag in production.
image = "ghcr.io/thephaseless/byparr:latest"

# Host port for the Byparr web UI.
port = 8191

# Placement constraints. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
constraints = []

# The task resources.
resources = {
    cpu    = 1000
    memory = 1024
  }
NameTypeDefaultDescription
job_name string
"byparr"
The name of the Nomad job.
namespace string
"default"
The Nomad namespace to deploy into.
datacenters list
["*"]
The datacenters to deploy to.
image string
"ghcr.io/thephaseless/byparr:latest"
The Byparr container image. Pin a tag in production.
port number
8191
Host port for the Byparr web UI.
constraints list
[]
Placement constraints. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
resources object
{
    cpu    = 1000
    memory = 1024
  }
The task resources.
Readme

byparr

Byparr — a maintained, drop-in FlareSolverr replacement. It uses a real headless browser to solve Cloudflare and other anti-bot challenges, then returns the page and cookies over a simple HTTP API — so indexers and scrapers can fetch protected sites. API-compatible with FlareSolverr's /v1 endpoint.

Single stateless host-networked Nomad service (no volume).

Deploy

nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run byparr --registry=nomploy

Configure

Variable Default Description
port 8191 API port (PORT). FlareSolverr-compatible.
image ghcr.io/thephaseless/byparr:latest Container image. Pin a tag in production.
resources { cpu = 1000, memory = 1024 } Task resources. A browser is memory-hungry.

Pairs with prowlarr / indexers: set the FlareSolverr proxy URL to http://<host>:8191. It runs a Chromium instance (2 GB /dev/shm is configured), so give it CPU/RAM headroom. Being stateless, it needs no storage.