22 lines
512 B
TypeScript
22 lines
512 B
TypeScript
/**
|
|
* Settings data shapes for Onebox
|
|
*/
|
|
|
|
export interface ISettings {
|
|
cloudflareToken: string;
|
|
cloudflareZoneId: string;
|
|
dcrouterGatewayUrl: string;
|
|
dcrouterGatewayApiToken: string;
|
|
dcrouterGatewayClientId: string;
|
|
/** @deprecated Use dcrouterGatewayClientId. */
|
|
dcrouterWorkHosterId: string;
|
|
dcrouterTargetHost: string;
|
|
dcrouterTargetPort: number;
|
|
autoRenewCerts: boolean;
|
|
renewalThreshold: number;
|
|
acmeEmail: string;
|
|
httpPort: number;
|
|
httpsPort: number;
|
|
forceHttps: boolean;
|
|
}
|