settings.defaults.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760
  1. const { merge } = require('@overleaf/settings/merge')
  2. let defaultFeatures, siteUrl
  3. // Make time interval config easier.
  4. const seconds = 1000
  5. const minutes = 60 * seconds
  6. // These credentials are used for authenticating api requests
  7. // between services that may need to go over public channels
  8. const httpAuthUser = process.env.WEB_API_USER
  9. const httpAuthPass = process.env.WEB_API_PASSWORD
  10. const httpAuthUsers = {}
  11. if (httpAuthUser && httpAuthPass) {
  12. httpAuthUsers[httpAuthUser] = httpAuthPass
  13. }
  14. const sessionSecret = process.env.SESSION_SECRET || 'secret-please-change'
  15. const intFromEnv = function (name, defaultValue) {
  16. if (
  17. [null, undefined].includes(defaultValue) ||
  18. typeof defaultValue !== 'number'
  19. ) {
  20. throw new Error(
  21. `Bad default integer value for setting: ${name}, ${defaultValue}`
  22. )
  23. }
  24. return parseInt(process.env[name], 10) || defaultValue
  25. }
  26. const defaultTextExtensions = [
  27. 'tex',
  28. 'latex',
  29. 'sty',
  30. 'cls',
  31. 'bst',
  32. 'bib',
  33. 'bibtex',
  34. 'txt',
  35. 'tikz',
  36. 'mtx',
  37. 'rtex',
  38. 'md',
  39. 'asy',
  40. 'latexmkrc',
  41. 'lbx',
  42. 'bbx',
  43. 'cbx',
  44. 'm',
  45. 'lco',
  46. 'dtx',
  47. 'ins',
  48. 'ist',
  49. 'def',
  50. 'clo',
  51. 'ldf',
  52. 'rmd',
  53. 'lua',
  54. 'gv',
  55. 'mf',
  56. 'yml',
  57. 'yaml',
  58. ]
  59. const parseTextExtensions = function (extensions) {
  60. if (extensions) {
  61. return extensions.split(',').map(ext => ext.trim())
  62. } else {
  63. return []
  64. }
  65. }
  66. module.exports = {
  67. env: 'server-ce',
  68. limits: {
  69. httpGlobalAgentMaxSockets: 300,
  70. httpsGlobalAgentMaxSockets: 300,
  71. },
  72. allowAnonymousReadAndWriteSharing:
  73. process.env.SHARELATEX_ALLOW_ANONYMOUS_READ_AND_WRITE_SHARING === 'true',
  74. // Databases
  75. // ---------
  76. mongo: {
  77. options: {
  78. appname: 'web',
  79. useUnifiedTopology:
  80. (process.env.MONGO_USE_UNIFIED_TOPOLOGY || 'true') === 'true',
  81. poolSize: parseInt(process.env.MONGO_POOL_SIZE, 10) || 10,
  82. serverSelectionTimeoutMS:
  83. parseInt(process.env.MONGO_SERVER_SELECTION_TIMEOUT, 10) || 60000,
  84. socketTimeoutMS: parseInt(process.env.MONGO_SOCKET_TIMEOUT, 10) || 30000,
  85. },
  86. url:
  87. process.env.MONGO_CONNECTION_STRING ||
  88. process.env.MONGO_URL ||
  89. `mongodb://${process.env.MONGO_HOST || '127.0.0.1'}/sharelatex`,
  90. },
  91. redis: {
  92. web: {
  93. host: process.env.REDIS_HOST || 'localhost',
  94. port: process.env.REDIS_PORT || '6379',
  95. password: process.env.REDIS_PASSWORD || '',
  96. maxRetriesPerRequest: parseInt(
  97. process.env.REDIS_MAX_RETRIES_PER_REQUEST || '20'
  98. ),
  99. },
  100. // websessions:
  101. // cluster: [
  102. // {host: 'localhost', port: 7000}
  103. // {host: 'localhost', port: 7001}
  104. // {host: 'localhost', port: 7002}
  105. // {host: 'localhost', port: 7003}
  106. // {host: 'localhost', port: 7004}
  107. // {host: 'localhost', port: 7005}
  108. // ]
  109. // ratelimiter:
  110. // cluster: [
  111. // {host: 'localhost', port: 7000}
  112. // {host: 'localhost', port: 7001}
  113. // {host: 'localhost', port: 7002}
  114. // {host: 'localhost', port: 7003}
  115. // {host: 'localhost', port: 7004}
  116. // {host: 'localhost', port: 7005}
  117. // ]
  118. // cooldown:
  119. // cluster: [
  120. // {host: 'localhost', port: 7000}
  121. // {host: 'localhost', port: 7001}
  122. // {host: 'localhost', port: 7002}
  123. // {host: 'localhost', port: 7003}
  124. // {host: 'localhost', port: 7004}
  125. // {host: 'localhost', port: 7005}
  126. // ]
  127. api: {
  128. host: process.env.REDIS_HOST || 'localhost',
  129. port: process.env.REDIS_PORT || '6379',
  130. password: process.env.REDIS_PASSWORD || '',
  131. maxRetriesPerRequest: parseInt(
  132. process.env.REDIS_MAX_RETRIES_PER_REQUEST || '20'
  133. ),
  134. },
  135. },
  136. // Service locations
  137. // -----------------
  138. // Configure which ports to run each service on. Generally you
  139. // can leave these as they are unless you have some other services
  140. // running which conflict, or want to run the web process on port 80.
  141. internal: {
  142. web: {
  143. port: process.env.WEB_PORT || 3000,
  144. host: process.env.LISTEN_ADDRESS || 'localhost',
  145. },
  146. },
  147. // Tell each service where to find the other services. If everything
  148. // is running locally then this is easy, but they exist as separate config
  149. // options incase you want to run some services on remote hosts.
  150. apis: {
  151. web: {
  152. url: `http://${
  153. process.env.WEB_API_HOST || process.env.WEB_HOST || 'localhost'
  154. }:${process.env.WEB_API_PORT || process.env.WEB_PORT || 3000}`,
  155. user: httpAuthUser,
  156. pass: httpAuthPass,
  157. },
  158. documentupdater: {
  159. url: `http://${
  160. process.env.DOCUPDATER_HOST ||
  161. process.env.DOCUMENT_UPDATER_HOST ||
  162. 'localhost'
  163. }:3003`,
  164. },
  165. spelling: {
  166. url: `http://${process.env.SPELLING_HOST || 'localhost'}:3005`,
  167. host: process.env.SPELLING_HOST,
  168. },
  169. trackchanges: {
  170. url: `http://${process.env.TRACK_CHANGES_HOST || 'localhost'}:3015`,
  171. },
  172. docstore: {
  173. url: `http://${process.env.DOCSTORE_HOST || 'localhost'}:3016`,
  174. pubUrl: `http://${process.env.DOCSTORE_HOST || 'localhost'}:3016`,
  175. },
  176. chat: {
  177. internal_url: `http://${process.env.CHAT_HOST || 'localhost'}:3010`,
  178. },
  179. filestore: {
  180. url: `http://${process.env.FILESTORE_HOST || 'localhost'}:3009`,
  181. },
  182. clsi: {
  183. url: `http://${process.env.CLSI_HOST || 'localhost'}:3013`,
  184. // url: "http://#{process.env['CLSI_LB_HOST']}:3014"
  185. backendGroupName: undefined,
  186. },
  187. realTime: {
  188. url: `http://${process.env.REALTIME_HOST || 'localhost'}:3026`,
  189. },
  190. contacts: {
  191. url: `http://${process.env.CONTACTS_HOST || 'localhost'}:3036`,
  192. },
  193. notifications: {
  194. url: `http://${process.env.NOTIFICATIONS_HOST || 'localhost'}:3042`,
  195. },
  196. webpack: {
  197. url: `http://${process.env.WEBPACK_HOST || 'localhost'}:3808`,
  198. },
  199. // For legacy reasons, we need to populate the below objects.
  200. v1: {},
  201. recurly: {},
  202. },
  203. splitTests: [],
  204. // Where your instance of ShareLaTeX can be found publically. Used in emails
  205. // that are sent out, generated links, etc.
  206. siteUrl: (siteUrl = process.env.PUBLIC_URL || 'http://localhost:3000'),
  207. lockManager: {
  208. lockTestInterval: intFromEnv('LOCK_MANAGER_LOCK_TEST_INTERVAL', 50),
  209. maxTestInterval: intFromEnv('LOCK_MANAGER_MAX_TEST_INTERVAL', 1000),
  210. maxLockWaitTime: intFromEnv('LOCK_MANAGER_MAX_LOCK_WAIT_TIME', 10000),
  211. redisLockExpiry: intFromEnv('LOCK_MANAGER_REDIS_LOCK_EXPIRY', 30),
  212. slowExecutionThreshold: intFromEnv(
  213. 'LOCK_MANAGER_SLOW_EXECUTION_THRESHOLD',
  214. 5000
  215. ),
  216. },
  217. // Optional separate location for websocket connections, if unset defaults to siteUrl.
  218. wsUrl: process.env.WEBSOCKET_URL,
  219. wsUrlV2: process.env.WEBSOCKET_URL_V2,
  220. wsUrlBeta: process.env.WEBSOCKET_URL_BETA,
  221. wsUrlV2Percentage: parseInt(
  222. process.env.WEBSOCKET_URL_V2_PERCENTAGE || '0',
  223. 10
  224. ),
  225. wsRetryHandshake: parseInt(process.env.WEBSOCKET_RETRY_HANDSHAKE || '5', 10),
  226. // cookie domain
  227. // use full domain for cookies to only be accessible from that domain,
  228. // replace subdomain with dot to have them accessible on all subdomains
  229. cookieDomain: process.env.COOKIE_DOMAIN,
  230. cookieName: process.env.COOKIE_NAME || 'sharelatex.sid',
  231. // this is only used if cookies are used for clsi backend
  232. // clsiCookieKey: "clsiserver"
  233. robotsNoindex: process.env.ROBOTS_NOINDEX === 'true' || false,
  234. maxEntitiesPerProject: 2000,
  235. maxUploadSize: 50 * 1024 * 1024, // 50 MB
  236. // start failing the health check if active handles exceeds this limit
  237. maxActiveHandles: process.env.MAX_ACTIVE_HANDLES
  238. ? parseInt(process.env.MAX_ACTIVE_HANDLES, 10)
  239. : undefined,
  240. // Security
  241. // --------
  242. security: {
  243. sessionSecret,
  244. bcryptRounds: parseInt(process.env.BCRYPT_ROUNDS, 10) || 12,
  245. }, // number of rounds used to hash user passwords (raised to power 2)
  246. httpAuthUsers,
  247. // Default features
  248. // ----------------
  249. //
  250. // You can select the features that are enabled by default for new
  251. // new users.
  252. defaultFeatures: (defaultFeatures = {
  253. collaborators: -1,
  254. dropbox: true,
  255. github: true,
  256. gitBridge: true,
  257. versioning: true,
  258. compileTimeout: 180,
  259. compileGroup: 'standard',
  260. references: true,
  261. templates: true,
  262. trackChanges: true,
  263. }),
  264. // featuresEpoch: 'YYYY-MM-DD',
  265. features: {
  266. personal: defaultFeatures,
  267. },
  268. groupPlanModalOptions: {
  269. plan_codes: [],
  270. currencies: [],
  271. sizes: [],
  272. usages: [],
  273. },
  274. plans: [
  275. {
  276. planCode: 'personal',
  277. name: 'Personal',
  278. price: 0,
  279. features: defaultFeatures,
  280. },
  281. ],
  282. enableSubscriptions: false,
  283. enabledLinkedFileTypes: (process.env.ENABLED_LINKED_FILE_TYPES || '').split(
  284. ','
  285. ),
  286. // i18n
  287. // ------
  288. //
  289. i18n: {
  290. checkForHTMLInVars: process.env.I18N_CHECK_FOR_HTML_IN_VARS === 'true',
  291. escapeHTMLInVars: process.env.I18N_ESCAPE_HTML_IN_VARS === 'true',
  292. subdomainLang: {
  293. www: { lngCode: 'en', url: siteUrl },
  294. },
  295. defaultLng: 'en',
  296. },
  297. // Spelling languages
  298. // ------------------
  299. //
  300. // You must have the corresponding aspell package installed to
  301. // be able to use a language.
  302. languages: [
  303. { code: 'en', name: 'English' },
  304. { code: 'en_US', name: 'English (American)' },
  305. { code: 'en_GB', name: 'English (British)' },
  306. { code: 'en_CA', name: 'English (Canadian)' },
  307. { code: 'af', name: 'Afrikaans' },
  308. { code: 'ar', name: 'Arabic' },
  309. { code: 'gl', name: 'Galician' },
  310. { code: 'eu', name: 'Basque' },
  311. { code: 'br', name: 'Breton' },
  312. { code: 'bg', name: 'Bulgarian' },
  313. { code: 'ca', name: 'Catalan' },
  314. { code: 'hr', name: 'Croatian' },
  315. { code: 'cs', name: 'Czech' },
  316. { code: 'da', name: 'Danish' },
  317. { code: 'nl', name: 'Dutch' },
  318. { code: 'eo', name: 'Esperanto' },
  319. { code: 'et', name: 'Estonian' },
  320. { code: 'fo', name: 'Faroese' },
  321. { code: 'fr', name: 'French' },
  322. { code: 'de', name: 'German' },
  323. { code: 'el', name: 'Greek' },
  324. { code: 'id', name: 'Indonesian' },
  325. { code: 'ga', name: 'Irish' },
  326. { code: 'it', name: 'Italian' },
  327. { code: 'kk', name: 'Kazakh' },
  328. { code: 'ku', name: 'Kurdish' },
  329. { code: 'lv', name: 'Latvian' },
  330. { code: 'lt', name: 'Lithuanian' },
  331. { code: 'nr', name: 'Ndebele' },
  332. { code: 'ns', name: 'Northern Sotho' },
  333. { code: 'no', name: 'Norwegian' },
  334. { code: 'fa', name: 'Persian' },
  335. { code: 'pl', name: 'Polish' },
  336. { code: 'pt_BR', name: 'Portuguese (Brazilian)' },
  337. { code: 'pt_PT', name: 'Portuguese (European)' },
  338. { code: 'pa', name: 'Punjabi' },
  339. { code: 'ro', name: 'Romanian' },
  340. { code: 'ru', name: 'Russian' },
  341. { code: 'sk', name: 'Slovak' },
  342. { code: 'sl', name: 'Slovenian' },
  343. { code: 'st', name: 'Southern Sotho' },
  344. { code: 'es', name: 'Spanish' },
  345. { code: 'sv', name: 'Swedish' },
  346. { code: 'tl', name: 'Tagalog' },
  347. { code: 'ts', name: 'Tsonga' },
  348. { code: 'tn', name: 'Tswana' },
  349. { code: 'hsb', name: 'Upper Sorbian' },
  350. { code: 'cy', name: 'Welsh' },
  351. { code: 'xh', name: 'Xhosa' },
  352. ],
  353. translatedLanguages: {
  354. cn: '简体中文',
  355. cs: 'Čeština',
  356. da: 'Dansk',
  357. de: 'Deutsch',
  358. en: 'English',
  359. es: 'Español',
  360. fi: 'Suomi',
  361. fr: 'Français',
  362. it: 'Italiano',
  363. ja: '日本語',
  364. ko: '한국어',
  365. nl: 'Nederlands',
  366. no: 'Norsk',
  367. pl: 'Polski',
  368. pt: 'Português',
  369. ro: 'Română',
  370. ru: 'Русский',
  371. sv: 'Svenska',
  372. tr: 'Türkçe',
  373. uk: 'Українська',
  374. 'zh-CN': '简体中文',
  375. },
  376. // Password Settings
  377. // -----------
  378. // These restrict the passwords users can use when registering
  379. // opts are from http://antelle.github.io/passfield
  380. passwordStrengthOptions: {
  381. length: {
  382. min: 6,
  383. // Bcrypt does not support longer passwords than that.
  384. max: 72,
  385. },
  386. },
  387. // Email support
  388. // -------------
  389. //
  390. // ShareLaTeX uses nodemailer (http://www.nodemailer.com/) to send transactional emails.
  391. // To see the range of transport and options they support, see http://www.nodemailer.com/docs/transports
  392. // email:
  393. // fromAddress: ""
  394. // replyTo: ""
  395. // lifecycle: false
  396. // # Example transport and parameter settings for Amazon SES
  397. // transport: "SES"
  398. // parameters:
  399. // AWSAccessKeyID: ""
  400. // AWSSecretKey: ""
  401. // For legacy reasons, we need to populate this object.
  402. sentry: {},
  403. // Production Settings
  404. // -------------------
  405. debugPugTemplates: process.env.DEBUG_PUG_TEMPLATES === 'true',
  406. precompilePugTemplatesAtBootTime: process.env
  407. .PRECOMPILE_PUG_TEMPLATES_AT_BOOT_TIME
  408. ? process.env.PRECOMPILE_PUG_TEMPLATES_AT_BOOT_TIME === 'true'
  409. : process.env.NODE_ENV === 'production',
  410. // Should javascript assets be served minified or not. Note that you will
  411. // need to run `grunt compile:minify` within the web-sharelatex directory
  412. // to generate these.
  413. useMinifiedJs: process.env.MINIFIED_JS === 'true' || false,
  414. // Should static assets be sent with a header to tell the browser to cache
  415. // them.
  416. cacheStaticAssets: false,
  417. // If you are running ShareLaTeX over https, set this to true to send the
  418. // cookie with a secure flag (recommended).
  419. secureCookie: false,
  420. // 'SameSite' cookie setting. Can be set to 'lax', 'none' or 'strict'
  421. // 'lax' is recommended, as 'strict' will prevent people linking to projects
  422. // https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-03#section-4.1.2.7
  423. sameSiteCookie: 'lax',
  424. // If you are running ShareLaTeX behind a proxy (like Apache, Nginx, etc)
  425. // then set this to true to allow it to correctly detect the forwarded IP
  426. // address and http/https protocol information.
  427. behindProxy: false,
  428. // Expose the hostname in the `X-Served-By` response header
  429. exposeHostname: process.env.EXPOSE_HOSTNAME === 'true',
  430. // Cookie max age (in milliseconds). Set to false for a browser session.
  431. cookieSessionLength: 5 * 24 * 60 * 60 * 1000, // 5 days
  432. // When true, only allow invites to be sent to email addresses that
  433. // already have user accounts
  434. restrictInvitesToExistingAccounts: false,
  435. // Should we allow access to any page without logging in? This includes
  436. // public projects, /learn, /templates, about pages, etc.
  437. allowPublicAccess: process.env.SHARELATEX_ALLOW_PUBLIC_ACCESS === 'true',
  438. // editor should be open by default
  439. editorIsOpen: process.env.EDITOR_OPEN !== 'false',
  440. // site should be open by default
  441. siteIsOpen: process.env.SITE_OPEN !== 'false',
  442. // Use a single compile directory for all users in a project
  443. // (otherwise each user has their own directory)
  444. // disablePerUserCompiles: true
  445. // Domain the client (pdfjs) should download the compiled pdf from
  446. pdfDownloadDomain: process.env.PDF_DOWNLOAD_DOMAIN, // "http://clsi-lb:3014"
  447. // By default turn on feature flag, can be overridden per request.
  448. enablePdfCaching: process.env.ENABLE_PDF_CACHING === 'true',
  449. // Whether to disable any existing service worker on the next load of the editor
  450. resetServiceWorker: process.env.RESET_SERVICE_WORKER === 'true',
  451. // Maximum size of text documents in the real-time editing system.
  452. max_doc_length: 2 * 1024 * 1024, // 2mb
  453. // Maximum JSON size in HTTP requests
  454. // We should be able to process twice the max doc length, to allow for
  455. // - the doc content
  456. // - text ranges spanning the whole doc
  457. //
  458. // There's also overhead required for the JSON encoding and the UTF-8 encoding,
  459. // theoretically up to 3 times the max doc length. On the other hand, we don't
  460. // want to block the event loop with JSON parsing, so we try to find a
  461. // practical compromise.
  462. max_json_request_size:
  463. parseInt(process.env.MAX_JSON_REQUEST_SIZE) || 6 * 1024 * 1024, // 6 MB
  464. // Internal configs
  465. // ----------------
  466. path: {
  467. // If we ever need to write something to disk (e.g. incoming requests
  468. // that need processing but may be too big for memory, then write
  469. // them to disk here).
  470. dumpFolder: './data/dumpFolder',
  471. uploadFolder: './data/uploads',
  472. },
  473. // Automatic Snapshots
  474. // -------------------
  475. automaticSnapshots: {
  476. // How long should we wait after the user last edited to
  477. // take a snapshot?
  478. waitTimeAfterLastEdit: 5 * minutes,
  479. // Even if edits are still taking place, this is maximum
  480. // time to wait before taking another snapshot.
  481. maxTimeBetweenSnapshots: 30 * minutes,
  482. },
  483. // Smoke test
  484. // ----------
  485. // Provide log in credentials and a project to be able to run
  486. // some basic smoke tests to check the core functionality.
  487. //
  488. smokeTest: {
  489. user: process.env.SMOKE_TEST_USER,
  490. userId: process.env.SMOKE_TEST_USER_ID,
  491. password: process.env.SMOKE_TEST_PASSWORD,
  492. projectId: process.env.SMOKE_TEST_PROJECT_ID,
  493. rateLimitSubject: process.env.SMOKE_TEST_RATE_LIMIT_SUBJECT || '127.0.0.1',
  494. stepTimeout: parseInt(process.env.SMOKE_TEST_STEP_TIMEOUT || '10000', 10),
  495. },
  496. appName: process.env.APP_NAME || 'ShareLaTeX (Community Edition)',
  497. adminEmail: process.env.ADMIN_EMAIL || 'placeholder@example.com',
  498. adminDomains: process.env.ADMIN_DOMAINS
  499. ? JSON.parse(process.env.ADMIN_DOMAINS)
  500. : undefined,
  501. nav: {
  502. title: 'ShareLaTeX Community Edition',
  503. hide_powered_by: process.env.NAV_HIDE_POWERED_BY === 'true',
  504. left_footer: [],
  505. right_footer: [
  506. {
  507. text: "<i class='fa fa-github-square'></i> Fork on Github!",
  508. url: 'https://github.com/overleaf/overleaf',
  509. },
  510. ],
  511. showSubscriptionLink: false,
  512. header_extras: [],
  513. },
  514. // Example:
  515. // header_extras: [{text: "Some Page", url: "http://example.com/some/page", class: "subdued"}]
  516. recaptcha: {
  517. disabled: {
  518. invite: true,
  519. login: true,
  520. passwordReset: true,
  521. register: true,
  522. },
  523. },
  524. customisation: {},
  525. redirects: {
  526. '/templates/index': '/templates/',
  527. },
  528. reloadModuleViewsOnEachRequest: process.env.NODE_ENV === 'development',
  529. rateLimit: {
  530. autoCompile: {
  531. everyone: process.env.RATE_LIMIT_AUTO_COMPILE_EVERYONE || 100,
  532. standard: process.env.RATE_LIMIT_AUTO_COMPILE_STANDARD || 25,
  533. },
  534. },
  535. analytics: {
  536. enabled: false,
  537. },
  538. compileBodySizeLimitMb: process.env.COMPILE_BODY_SIZE_LIMIT_MB || 5,
  539. textExtensions: defaultTextExtensions.concat(
  540. parseTextExtensions(process.env.ADDITIONAL_TEXT_EXTENSIONS)
  541. ),
  542. validRootDocExtensions: ['tex', 'Rtex', 'ltx'],
  543. emailConfirmationDisabled:
  544. process.env.EMAIL_CONFIRMATION_DISABLED === 'true' || false,
  545. enabledServices: (process.env.ENABLED_SERVICES || 'web,api')
  546. .split(',')
  547. .map(s => s.trim()),
  548. // module options
  549. // ----------
  550. modules: {
  551. sanitize: {
  552. options: {
  553. allowedTags: [
  554. 'h1',
  555. 'h2',
  556. 'h3',
  557. 'h4',
  558. 'h5',
  559. 'h6',
  560. 'blockquote',
  561. 'p',
  562. 'a',
  563. 'ul',
  564. 'ol',
  565. 'nl',
  566. 'li',
  567. 'b',
  568. 'i',
  569. 'strong',
  570. 'em',
  571. 'strike',
  572. 'code',
  573. 'hr',
  574. 'br',
  575. 'div',
  576. 'table',
  577. 'thead',
  578. 'col',
  579. 'caption',
  580. 'tbody',
  581. 'tr',
  582. 'th',
  583. 'td',
  584. 'tfoot',
  585. 'pre',
  586. 'iframe',
  587. 'img',
  588. 'figure',
  589. 'figcaption',
  590. 'span',
  591. 'source',
  592. 'video',
  593. 'del',
  594. ],
  595. allowedAttributes: {
  596. a: [
  597. 'href',
  598. 'name',
  599. 'target',
  600. 'class',
  601. 'event-tracking',
  602. 'event-tracking-ga',
  603. 'event-tracking-label',
  604. 'event-tracking-trigger',
  605. ],
  606. div: ['class', 'id', 'style'],
  607. h1: ['class', 'id'],
  608. h2: ['class', 'id'],
  609. h3: ['class', 'id'],
  610. h4: ['class', 'id'],
  611. h5: ['class', 'id'],
  612. h6: ['class', 'id'],
  613. col: ['width'],
  614. figure: ['class', 'id', 'style'],
  615. figcaption: ['class', 'id', 'style'],
  616. i: ['aria-hidden', 'aria-label', 'class', 'id'],
  617. iframe: [
  618. 'allowfullscreen',
  619. 'frameborder',
  620. 'height',
  621. 'src',
  622. 'style',
  623. 'width',
  624. ],
  625. img: ['alt', 'class', 'src', 'style'],
  626. source: ['src', 'type'],
  627. span: ['class', 'id', 'style'],
  628. strong: ['style'],
  629. table: ['border', 'class', 'id', 'style'],
  630. td: ['colspan', 'rowspan', 'headers', 'style'],
  631. th: [
  632. 'abbr',
  633. 'headers',
  634. 'colspan',
  635. 'rowspan',
  636. 'scope',
  637. 'sorted',
  638. 'style',
  639. ],
  640. tr: ['class'],
  641. video: ['alt', 'class', 'controls', 'height', 'width'],
  642. },
  643. },
  644. },
  645. },
  646. overleafModuleImports: {
  647. // modules to import (an empty array for each set of modules)
  648. createFileModes: [],
  649. gitBridge: [],
  650. publishModal: [],
  651. tprLinkedFileInfo: [],
  652. tprLinkedFileRefreshError: [],
  653. contactUsModal: [],
  654. },
  655. moduleImportSequence: ['launchpad', 'server-ce-scripts', 'user-activate'],
  656. csp: {
  657. percentage: parseFloat(process.env.CSP_PERCENTAGE) || 0,
  658. enabled: process.env.CSP_ENABLED === 'true',
  659. reportOnly: process.env.CSP_REPORT_ONLY === 'true',
  660. reportPercentage: parseFloat(process.env.CSP_REPORT_PERCENTAGE) || 0,
  661. reportUri: process.env.CSP_REPORT_URI,
  662. exclude: ['app/views/project/editor', 'app/views/project/list'],
  663. },
  664. unsupportedBrowsers: {
  665. ie: '<=11',
  666. },
  667. }
  668. module.exports.mergeWith = function (overrides) {
  669. return merge(overrides, module.exports)
  670. }