This repository has been archived on 2023-05-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neo/custom/cryptpad/config.js
2023-02-01 13:17:39 +01:00

40 lines
No EOL
1.1 KiB
JavaScript

module.exports = {
// hosting opts
httpUnsafeOrigin: 'https://pad.ixvd.net', // main site
httpSafeOrigin: "https://pad.sandbox.neo.ixvd.net", // sandbox
httpAddress: '::', // listen on
httpPort: 3000, // main port
httpSafePort: 3001, // sandbox port
maxWorkers: 6,
// admin things
adminKeys: [ // keys of admins
"[didier@pad.ixvd.net/6J77lHHDKGw3Y-8FAzlNNZy6G4TFA22cMwEawgp1KWo=]"
],
adminEmail: "support@faulty.nl",
// retention, size management
accountRetentionTime: 365, // delete content of user after n days of inactivity
// upload sizes
maxUploadSize: 20 * 1024 * 1024, // 20MB upload limit
premiumUploadSize: 100 * 1024 * 1024, // 100MB upload limit (premium)
// paths
filePath: './datastore/',
archivePath: './data/archive',
pinPath: './data/pins',
taskPath: './data/tasks',
blockPath: './block',
blobPath: './blob',
blobStagingPath: './data/blobstage',
decreePath: './data/decrees',
logPath: './data/logs',
// debugging
logToStdout: false,
logLevel: 'info',
logFeedback: false,
verbose: false,
installMethod: 'unspecified'
};