
* Allow changing listening ip address * Use Json serialize for appsettings.config saving * BOM * IP Address validation * ip address reset * ValidIpAddress regex
19 lines
495 B
TypeScript
19 lines
495 B
TypeScript
export interface ServerSettings {
|
|
cacheDirectory: string;
|
|
taskScan: string;
|
|
taskBackup: string;
|
|
loggingLevel: string;
|
|
port: number;
|
|
ipAddresses: string;
|
|
allowStatCollection: boolean;
|
|
enableOpds: boolean;
|
|
baseUrl: string;
|
|
bookmarksDirectory: string;
|
|
emailServiceUrl: string;
|
|
convertBookmarkToWebP: boolean;
|
|
convertCoverToWebP: boolean;
|
|
totalBackups: number;
|
|
totalLogs: number;
|
|
enableFolderWatching: boolean;
|
|
hostName: string;
|
|
}
|