pull/88/head
parent
13d34a025b
commit
d181f19458
|
@ -212,7 +212,7 @@ module.exports = {
|
|||
},
|
||||
speedTest: {
|
||||
enabled: true,
|
||||
interval: 60000,
|
||||
interval: 160000,
|
||||
hostnameList: ['github.com'],
|
||||
dnsProviders: ['usa', 'quad9', 'rubyfish']
|
||||
}
|
||||
|
|
|
@ -13,10 +13,14 @@ module.exports = (config) => {
|
|||
const serverConfig = config
|
||||
const setting = serverConfig.setting
|
||||
|
||||
if (!setting.script.dirAbsolutePath) {
|
||||
setting.script.dirAbsolutePath = path.join(setting.rootDir, setting.script.defaultDir)
|
||||
}
|
||||
|
||||
const overwallConfig = serverConfig.plugin.overwall
|
||||
if (!overwallConfig.pac.pacFileAbsolutePath) {
|
||||
overwallConfig.pac.pacFileAbsolutePath = path.join(setting.rootDir, overwallConfig.pac.pacFilePath)
|
||||
}
|
||||
const overwallMiddleware = createOverwallMiddleware(overwallConfig)
|
||||
const middlewares = []
|
||||
if (overwallMiddleware) {
|
||||
|
|
Loading…
Reference in New Issue