code: Initial Commit

This commit is contained in:
Vaxry
2025-04-12 20:06:56 +01:00
parent cf925610f4
commit fdc616ac69
23 changed files with 1349 additions and 0 deletions

16
example/config.jsonc Normal file
View File

@@ -0,0 +1,16 @@
{
// 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
"max_request_size": 10000000
}