add captcha support

This commit is contained in:
elijahr2411
2023-02-10 08:52:52 -05:00
parent 82cbcc030e
commit 626d32d22b
6 changed files with 66 additions and 1 deletions

View File

@@ -5,6 +5,12 @@ export default interface IConfig {
proxying : boolean;
proxyAllowedIps : string[];
};
hcaptcha : {
enabled : boolean;
sitekey : string;
secret : string;
whitelist : string[];
};
vm : {
qemuArgs : string;
vncPort : number;