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.
87 lines
2.8 KiB
JavaScript
87 lines
2.8 KiB
JavaScript
var Default = module.exports;
|
|
|
|
Default.commonCSP = function (domain, sandbox) {
|
|
domain = ' ' + domain;
|
|
sandbox = (sandbox && sandbox !== domain? ' ' + sandbox: '');
|
|
// Content-Security-Policy
|
|
|
|
return [
|
|
"default-src 'none'",
|
|
"style-src 'unsafe-inline' 'self' " + domain,
|
|
"font-src 'self' data:" + domain,
|
|
|
|
/* child-src is used to restrict iframes to a set of allowed domains.
|
|
* connect-src is used to restrict what domains can connect to the websocket.
|
|
*
|
|
* it is recommended that you configure these fields to match the
|
|
* domain which will serve your CryptPad instance.
|
|
*/
|
|
"child-src " + domain, //'self' blob: " + domain + sandbox,
|
|
// IE/Edge
|
|
"frame-src 'self' blob: " /*+ domain*/ + sandbox,
|
|
|
|
/* this allows connections over secure or insecure websockets
|
|
if you are deploying to production, you'll probably want to remove
|
|
the ws://* directive
|
|
*/
|
|
"connect-src 'self' ws: blob: " + domain + sandbox,
|
|
|
|
// data: is used by codemirror
|
|
"img-src 'self' data: blob:" + domain,
|
|
"media-src blob:",
|
|
|
|
// for accounts.cryptpad.fr authentication and cross-domain iframe sandbox
|
|
"frame-ancestors *",
|
|
"worker-src 'self'", // + domain + sandbox,
|
|
""
|
|
];
|
|
};
|
|
|
|
Default.contentSecurity = function (domain, sandbox) {
|
|
return (Default.commonCSP(domain, sandbox).join('; ') + "script-src 'self' resource: " + domain).replace(/\s+/g, ' ');
|
|
};
|
|
|
|
Default.padContentSecurity = function (domain, sandbox) {
|
|
return (Default.commonCSP(domain, sandbox).join('; ') + "script-src 'self' 'unsafe-eval' 'unsafe-inline' resource: " + domain).replace(/\s+/g, ' ');
|
|
};
|
|
|
|
Default.httpHeaders = function () {
|
|
return {
|
|
"X-XSS-Protection": "1; mode=block",
|
|
"X-Content-Type-Options": "nosniff",
|
|
"Access-Control-Allow-Origin": "*",
|
|
"Permissions-policy":"interest-cohort=()"
|
|
};
|
|
};
|
|
Default.mainPages = function () {
|
|
return [
|
|
'index',
|
|
'privacy',
|
|
'terms',
|
|
'contact',
|
|
'what-is-cryptpad',
|
|
'features',
|
|
'maintenance'
|
|
];
|
|
};
|
|
|
|
/* By default the CryptPad server will run scheduled tasks every five minutes
|
|
* If you want to run scheduled tasks in a separate process (like a crontab)
|
|
* you can disable this behaviour by setting the following value to true
|
|
*/
|
|
//disableIntegratedTasks: false,
|
|
|
|
/* CryptPad's file storage adaptor closes unused files after a configurable
|
|
* number of milliseconds (default 30000 (30 seconds))
|
|
*/
|
|
// channelExpirationMs: 30000,
|
|
|
|
/* CryptPad's file storage adaptor is limited by the number of open files.
|
|
* When the adaptor reaches openFileLimit, it will clean up older files
|
|
*/
|
|
//openFileLimit: 2048,
|
|
|
|
|
|
|
|
|