Files
checkpoint/example/config.jsonc

22 lines
541 B
JSON
Raw Normal View History

2025-04-12 20:06:56 +01:00
{
// where the html files are located
"html_dir": "./html",
// where the proxy should store its db (directory)
"data_dir": "./data",
// what port the proxy should listen on
"port": 3001,
// what address should the proxy pass after successful verification
"forward_address": "127.0.0.1:3000",
// max request size of 10MB
2025-04-12 23:13:11 +01:00
"max_request_size": 10000000,
// Timeout of 2 minutes for the proxy requests
2025-04-13 15:28:37 +01:00
"proxy_timeout_sec": 120,
// enables (a lot) more logging
"trace_logging": false
2025-04-12 20:06:56 +01:00
}