limit per user
This commit is contained in:
parent
7f6f850b2a
commit
2d15f439f3
@ -1,5 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
port: 8080,
|
port: 8080,
|
||||||
username: 'user',
|
username: 'user',
|
||||||
password: 'dav'
|
password: 'dav',
|
||||||
|
limit: 10000 // limit per user
|
||||||
}
|
}
|
2
index.js
2
index.js
@ -10,7 +10,7 @@ const config = require('./config'),
|
|||||||
requireAuthentification: true,
|
requireAuthentification: true,
|
||||||
httpAuthentication: new webdav.HTTPBasicAuthentication(userManager, 'DAV Auth'),
|
httpAuthentication: new webdav.HTTPBasicAuthentication(userManager, 'DAV Auth'),
|
||||||
privilegeManager: privilegeManager,
|
privilegeManager: privilegeManager,
|
||||||
storageManager: new webdav.PerUserStorageManager(10000),
|
storageManager: new webdav.PerUserStorageManager(config.limit),
|
||||||
rootFileSystem: new webdav.PhysicalFileSystem(__dirname + '/public')
|
rootFileSystem: new webdav.PhysicalFileSystem(__dirname + '/public')
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user