You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
447 B
Plaintext
13 lines
447 B
Plaintext
module.exports = {
|
|
httpPort: 3000,
|
|
websocketPort: 3001,
|
|
mongoUri: "mongodb://demo_user:demo_password@ds027769.mongolab.com:27769/demo_database",
|
|
// mongoUri: "mongodb://localhost:27017/cryptpad",
|
|
mongoCollectionName: 'cryptpad',
|
|
//privKeyAndCertFiles: [
|
|
// '/etc/apache2/ssl/my_secret.key',
|
|
// '/etc/apache2/ssl/my_public_cert.crt',
|
|
// '/etc/apache2/ssl/my_certificate_authorities_cert_chain.ca'
|
|
//],
|
|
};
|