2026-02-24 18:15:44 +00:00
|
|
|
/**
|
|
|
|
|
* Settings data shapes for Onebox
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
export interface ISettings {
|
|
|
|
|
cloudflareToken: string;
|
|
|
|
|
cloudflareZoneId: string;
|
2026-04-29 15:24:25 +00:00
|
|
|
dcrouterGatewayUrl: string;
|
|
|
|
|
dcrouterGatewayApiToken: string;
|
|
|
|
|
dcrouterWorkHosterId: string;
|
|
|
|
|
dcrouterTargetHost: string;
|
|
|
|
|
dcrouterTargetPort: number;
|
2026-02-24 18:15:44 +00:00
|
|
|
autoRenewCerts: boolean;
|
|
|
|
|
renewalThreshold: number;
|
|
|
|
|
acmeEmail: string;
|
|
|
|
|
httpPort: number;
|
|
|
|
|
httpsPort: number;
|
|
|
|
|
forceHttps: boolean;
|
|
|
|
|
}
|