2014-10-31 17:48:17 +01:00
|
|
|
module.exports = {
|
|
|
|
|
httpPort: 3000,
|
2014-11-03 11:13:41 +01:00
|
|
|
websocketPort: 3001,
|
2015-10-25 19:35:25 -04:00
|
|
|
storage: './storage/mongo',
|
2014-10-31 17:48:17 +01:00
|
|
|
mongoUri: "mongodb://demo_user:demo_password@ds027769.mongolab.com:27769/demo_database",
|
2014-11-03 21:44:35 +01:00
|
|
|
// mongoUri: "mongodb://localhost:27017/cryptpad",
|
2014-12-04 10:53:47 +01:00
|
|
|
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'
|
|
|
|
|
//],
|
2014-10-31 17:48:17 +01:00
|
|
|
};
|