mempool/unfurler/config.sample.json

19 lines
694 B
JSON
Raw Normal View History

2022-07-24 21:16:57 +00:00
{
"SERVER": {
"HOST": "http://localhost",
"HTTP_PORT": 4201
},
"MEMPOOL": {
"HTTP_HOST": "http://localhost",
"HTTP_PORT": 4200,
"NETWORK": "bitcoin" // "bitcoin" | "liquid" | "bisq" (optional - defaults to "bitcoin")
2022-07-24 21:16:57 +00:00
},
"PUPPETEER": {
"ENABLED": false, // optional, boolean, enables puppeteer and /render endpoints (default true)
"CLUSTER_SIZE": 2, // maximum number of parallel chromium pages. CLUSTER_SIZE=0 implies ENABLED=false
"EXEC_PATH": "/usr/local/bin/chrome", // optional
"MAX_PAGE_AGE": 86400, // maximum lifetime of a page session (in seconds)
"RENDER_TIMEOUT": 3000, // timeout for preview image rendering (in ms) (optional)
2022-07-24 21:16:57 +00:00
}
}