mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-15 03:42:23 +01:00
85 lines
2.5 KiB
JavaScript
85 lines
2.5 KiB
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
app: {
|
|
title: 'meanTorrent',
|
|
description: 'MEAN.JS BitTorrent - Full-Stack JavaScript Using MongoDB, Express, AngularJS, and Node.js, a Private BitTorrent Tracker CMS',
|
|
keywords: 'mongodb, express, angularjs, node.js, mongoose, passport',
|
|
googleAnalyticsTrackingID: process.env.GOOGLE_ANALYTICS_TRACKING_ID || 'GOOGLE_ANALYTICS_TRACKING_ID'
|
|
},
|
|
db: {
|
|
promise: global.Promise
|
|
},
|
|
port: process.env.PORT || 3000,
|
|
host: process.env.HOST || '0.0.0.0',
|
|
// DOMAIN config should be set to the fully qualified application accessible
|
|
// URL. For example: https://www.myapp.com (including port if required).
|
|
domain: process.env.DOMAIN || 'localhost',
|
|
// Session Cookie settings
|
|
sessionCookie: {
|
|
// session expiration is set by default to 24 hours
|
|
maxAge: 24 * (60 * 60 * 1000),
|
|
// httpOnly flag makes sure the cookie is only accessed
|
|
// through the HTTP protocol and not JS/browser
|
|
httpOnly: true,
|
|
// secure cookie should be turned to true to provide additional
|
|
// layer of security so that the cookie is set only when working
|
|
// in HTTPS mode.
|
|
secure: false
|
|
},
|
|
// sessionSecret should be changed for security measures and concerns
|
|
sessionSecret: process.env.SESSION_SECRET || 'MEAN',
|
|
// sessionKey is the cookie session name
|
|
sessionKey: 'sessionId',
|
|
sessionCollection: 'sessions',
|
|
// Lusca config
|
|
csrf: {
|
|
csrf: false,
|
|
csp: false,
|
|
xframe: 'SAMEORIGIN',
|
|
p3p: 'ABCDEF',
|
|
xssProtection: true
|
|
},
|
|
logo: 'modules/core/client/img/brand/logo.png',
|
|
favicon: 'modules/core/client/img/brand/favicon.ico',
|
|
illegalUsernames: ['meanjs', 'administrator', 'password', 'admin', 'user',
|
|
'unknown', 'anonymous', 'null', 'undefined', 'api'
|
|
],
|
|
uploads: {
|
|
profile: {
|
|
image: {
|
|
dest: './modules/users/client/img/profile/uploads/',
|
|
limits: {
|
|
fileSize: 1 * 1024 * 1024 // Max file size in bytes (1 MB)
|
|
}
|
|
}
|
|
},
|
|
torrent: {
|
|
file: {
|
|
dest: './modules/torrents/client/uploads/',
|
|
limits: {
|
|
fileSize: 1 * 1024 * 1024 // Max file size in bytes (1 MB)
|
|
}
|
|
}
|
|
},
|
|
subtitle: {
|
|
file: {
|
|
dest: './modules/torrents/client/uploads/subtitles/',
|
|
limits: {
|
|
fileSize: 1 * 1024 * 1024 // Max file size in bytes (1 MB)
|
|
}
|
|
}
|
|
}
|
|
},
|
|
shared: {
|
|
owasp: {
|
|
allowPassphrases: true,
|
|
maxLength: 128,
|
|
minLength: 10,
|
|
minPhraseLength: 20,
|
|
minOptionalTestsToPass: 4
|
|
}
|
|
}
|
|
|
|
};
|