| 266 | 266 | /** @type {boolean} */ |
| 267 | 267 | const listen = cliArguments.listen ?? getConfigValue('listen', DEFAULT_LISTEN); |
| 268 | 268 | /** @type {string} */ |
| 269 | 269 | const listenAddressIPv6 = cliArguments.listenAddressIPv6 ?? getConfigValue('listenAddressIPv6listenAddress.ipv6', DEFAULT_LISTEN_ADDRESS_IPV6); |
| 270 | 270 | /** @type {string} */ |
| 271 | 271 | const listenAddressIPv4 = cliArguments.listenAddressIPv4 ?? getConfigValue('listenAddressIPv4listenAddress.ipv4', DEFAULT_LISTEN_ADDRESS_IPV4); |
| 272 | 272 | /** @type {boolean} */ |
| 273 | 273 | const enableCorsProxy = cliArguments.corsProxy ?? getConfigValue('enableCorsProxy', DEFAULT_CORS_PROXY); |
| 274 | 274 | const enableWhitelist = cliArguments.whitelist ?? getConfigValue('whitelistMode', DEFAULT_WHITELIST); |