17 lines
318 B
JavaScript
Raw Normal View History

2016-09-09 17:52:00 +02:00
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: true,
2016-09-09 17:52:00 +02:00
socketPath: '/tmp/rtorrent.sock'
}
};
module.exports = CONFIG;