mirror of
https://github.com/Suwayomi/Suwayomi-Server.git
synced 2026-06-30 09:24:34 -05:00
* Set graphql logs to error level Set log level for loggers with names - ExecutionStrategy (spams logs with "... completing field ...") - notprivacysafe (logs every received request up to 4 times (received, parse, validate, execute)) * Extract logic to get logger for name into function * Add function to set log level for a logger * Add settings to enable graphql debug logging
51 lines
2.3 KiB
Plaintext
51 lines
2.3 KiB
Plaintext
# Server ip and port bindings
|
|
server.ip = "0.0.0.0"
|
|
server.port = 4567
|
|
|
|
# Socks5 proxy
|
|
server.socksProxyEnabled = false
|
|
server.socksProxyHost = ""
|
|
server.socksProxyPort = ""
|
|
|
|
# webUI
|
|
server.webUIEnabled = true
|
|
server.webUIFlavor = "WebUI" # "WebUI" or "Custom"
|
|
server.initialOpenInBrowserEnabled = true
|
|
server.webUIInterface = "browser" # "browser" or "electron"
|
|
server.electronPath = ""
|
|
server.webUIChannel = "stable" # "bundled" (the version bundled with the server release), "stable" or "preview" - the webUI version that should be used
|
|
server.webUIUpdateCheckInterval = 23 # time in hours - 0 to disable auto update - range: 1 <= n < 24 - default 23 hours - how often the server should check for webUI updates
|
|
|
|
# downloader
|
|
server.downloadAsCbz = false
|
|
server.downloadsPath = ""
|
|
server.autoDownloadNewChapters = false # if new chapters that have been retrieved should get automatically downloaded
|
|
|
|
# requests
|
|
server.maxSourcesInParallel = 6 # range: 1 <= n <= 20 - default: 6 - sets how many sources can do requests (updates, downloads) in parallel. updates/downloads are grouped by source and all mangas of a source are updated/downloaded synchronously
|
|
|
|
# updater
|
|
server.excludeUnreadChapters = true
|
|
server.excludeNotStarted = true
|
|
server.excludeCompleted = true
|
|
server.globalUpdateInterval = 12 # time in hours - 0 to disable it - (doesn't have to be full hours e.g. 12.5) - range: 6 <= n < ∞ - default: 12 hours - interval in which the global update will be automatically triggered
|
|
|
|
# Authentication
|
|
server.basicAuthEnabled = false
|
|
server.basicAuthUsername = ""
|
|
server.basicAuthPassword = ""
|
|
|
|
# misc
|
|
server.debugLogsEnabled = false
|
|
server.gqlDebugLogsEnabled = false # this includes logs with non privacy safe information
|
|
server.systemTrayEnabled = true
|
|
|
|
# backup
|
|
server.backupPath = ""
|
|
server.backupTime = "00:00" # range: hour: 0-23, minute: 0-59 - default: "00:00" - time of day at which the automated backup should be triggered
|
|
server.backupInterval = 1 # time in days - 0 to disable it - range: 1 <= n < ∞ - default: 1 day - interval in which the server will automatically create a backup
|
|
server.backupTTL = 14 # time in days - 0 to disable it - range: 1 <= n < ∞ - default: 14 days - how long backup files will be kept before they will get deleted
|
|
|
|
# local source
|
|
server.localSourcePath = ""
|