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.
Needs nomad-pack on PATH. The script only adds the nomploy registry and runs this pack.
Source ↗ Project ↗ ★ 2k ⚑ Report an issue
Save as values.hcl, edit, then run:
# 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
}
| Name | Type | Default | Description |
|---|---|---|---|
| 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. |
No variables match.
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).
nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run byparr --registry=nomploy
| 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/shmis configured), so give it CPU/RAM headroom. Being stateless, it needs no storage.