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;
|
2026-05-09 11:58:51 +00:00
|
|
|
dcrouterGatewayClientId: string;
|
|
|
|
|
/** @deprecated Use dcrouterGatewayClientId. */
|
2026-04-29 15:24:25 +00:00
|
|
|
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;
|
|
|
|
|
}
|