mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-04-20 04:19:18 +00:00
17 lines
319 B
JavaScript
17 lines
319 B
JavaScript
|
const CONFIG = {
|
||
|
dbCleanInterval: 1000 * 60 * 60,
|
||
|
dbPath: './server/db/',
|
||
|
floodServerPort: 3000,
|
||
|
maxHistoryStates: 30,
|
||
|
pollInterval: 1000 * 5,
|
||
|
secret: '<FLOOD_SECRET>',
|
||
|
scgi: {
|
||
|
host: 'localhost',
|
||
|
port: 5000,
|
||
|
socket: false,
|
||
|
socketPath: '/tmp/rtorrent.sock'
|
||
|
}
|
||
|
};
|
||
|
|
||
|
module.exports = CONFIG;
|