15 lines
600 B
JavaScript
15 lines
600 B
JavaScript
const {resolve} = require("node:path");
|
||
|
||
exports.termoutput = false;
|
||
|
||
exports.HTTP_PORT = 7707;
|
||
exports.NETWORK_MASK = '0.0.0.0'; //---> Sadece local için "127.0.0.1" heryerde çalışması için "0.0.0.0"
|
||
|
||
exports.HTTP_AUTH = true;
|
||
exports.HTTP_AUTH_USERNAME = 'saqut';
|
||
exports.HTTP_AUTH_USERPASSWORD = 'yum81633';
|
||
|
||
exports.LOADBALANCE_CPU = false; // ---> Cpu number (2,3,4...) for load balancer process or false for single thread (no load balancer and multiprocess)
|
||
|
||
exports.IPALLOCATION_DB = resolve(__dirname,"../database/ipallocation.db");
|
||
exports.IPALLOCATION_STORE_TYPE = "memory" // or file
|