22 lines
431 B
Plaintext
22 lines
431 B
Plaintext
module.exports = {
|
|
development: {
|
|
servicePort: 9511,
|
|
telnet: {
|
|
host: "127.0.0.1",
|
|
port: 5582,
|
|
negotiationMandatory: false,
|
|
timeout: 1500
|
|
},
|
|
database: {
|
|
host: "127.0.0.1",
|
|
port: 5432,
|
|
name: "prosody",
|
|
user: "postgres",
|
|
pass: "postgres",
|
|
idleTimeoutMillis: 10000,
|
|
connectionTimeoutMillis: 10000
|
|
},
|
|
mucDomain: "conference.demo.vnc.de"
|
|
}
|
|
};
|