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