settings.defaults.coffee 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537
  1. Path = require('path')
  2. http = require('http')
  3. http.globalAgent.maxSockets = 300
  4. # Make time interval config easier.
  5. seconds = 1000
  6. minutes = 60 * seconds
  7. # These credentials are used for authenticating api requests
  8. # between services that may need to go over public channels
  9. httpAuthUser = "sharelatex"
  10. httpAuthPass = "password"
  11. httpAuthUsers = {}
  12. httpAuthUsers[httpAuthUser] = httpAuthPass
  13. sessionSecret = "secret-please-change"
  14. v1Api =
  15. url: "http://#{process.env['V1_HOST'] or 'localhost'}:5000"
  16. user: 'overleaf'
  17. pass: 'password'
  18. module.exports = settings =
  19. allowAnonymousReadAndWriteSharing:
  20. process.env['SHARELATEX_ALLOW_ANONYMOUS_READ_AND_WRITE_SHARING'] == 'true'
  21. # File storage
  22. # ------------
  23. #
  24. # ShareLaTeX stores binary files like images in S3.
  25. # Fill in your Amazon S3 credential below.
  26. s3:
  27. key: ""
  28. secret: ""
  29. bucketName : ""
  30. # Databases
  31. # ---------
  32. mongo:
  33. url : process.env['MONGO_URL'] || "mongodb://#{process.env['MONGO_HOST'] or '127.0.0.1'}/sharelatex"
  34. redis:
  35. web:
  36. host: process.env['REDIS_HOST'] || "localhost"
  37. port: process.env['REDIS_PORT'] || "6379"
  38. password: ""
  39. # websessions:
  40. # cluster: [
  41. # {host: 'localhost', port: 7000}
  42. # {host: 'localhost', port: 7001}
  43. # {host: 'localhost', port: 7002}
  44. # {host: 'localhost', port: 7003}
  45. # {host: 'localhost', port: 7004}
  46. # {host: 'localhost', port: 7005}
  47. # ]
  48. # ratelimiter:
  49. # cluster: [
  50. # {host: 'localhost', port: 7000}
  51. # {host: 'localhost', port: 7001}
  52. # {host: 'localhost', port: 7002}
  53. # {host: 'localhost', port: 7003}
  54. # {host: 'localhost', port: 7004}
  55. # {host: 'localhost', port: 7005}
  56. # ]
  57. # cooldown:
  58. # cluster: [
  59. # {host: 'localhost', port: 7000}
  60. # {host: 'localhost', port: 7001}
  61. # {host: 'localhost', port: 7002}
  62. # {host: 'localhost', port: 7003}
  63. # {host: 'localhost', port: 7004}
  64. # {host: 'localhost', port: 7005}
  65. # ]
  66. api:
  67. host: process.env['REDIS_HOST'] || "localhost"
  68. port: process.env['REDIS_PORT'] || "6379"
  69. password: ""
  70. # Service locations
  71. # -----------------
  72. # Configure which ports to run each service on. Generally you
  73. # can leave these as they are unless you have some other services
  74. # running which conflict, or want to run the web process on port 80.
  75. internal:
  76. web:
  77. port: webPort = process.env['WEB_PORT'] or 3000
  78. host: process.env['LISTEN_ADDRESS'] or 'localhost'
  79. documentupdater:
  80. port: docUpdaterPort = 3003
  81. gitBridgePublicBaseUrl: "http://#{process.env['GIT_BRIDGE_HOST'] || 'localhost'}:8000"
  82. # Tell each service where to find the other services. If everything
  83. # is running locally then this is easy, but they exist as separate config
  84. # options incase you want to run some services on remote hosts.
  85. apis:
  86. web:
  87. url: "http://#{process.env['WEB_HOST'] or 'localhost'}:#{webPort}"
  88. user: httpAuthUser
  89. pass: httpAuthPass
  90. documentupdater:
  91. url : "http://#{process.env['DOCUPDATER_HOST'] or 'localhost'}:#{docUpdaterPort}"
  92. thirdPartyDataStore:
  93. url : "http://#{process.env['TPDS_HOST'] or 'localhost'}:3002"
  94. emptyProjectFlushDelayMiliseconds: 5 * seconds
  95. tags:
  96. url :"http://#{process.env['TAGS_HOST'] or 'localhost'}:3012"
  97. spelling:
  98. url : "http://#{process.env['SPELLING_HOST'] or 'localhost'}:3005"
  99. trackchanges:
  100. url : "http://#{process.env['TRACK_CHANGES_HOST'] or 'localhost'}:3015"
  101. project_history:
  102. sendProjectStructureOps: process.env.PROJECT_HISTORY_ENABLED == 'true' or false
  103. initializeHistoryForNewProjects: process.env.PROJECT_HISTORY_ENABLED == 'true' or false
  104. displayHistoryForNewProjects: process.env.PROJECT_HISTORY_ENABLED == 'true' or false
  105. url : "http://#{process.env['PROJECT_HISTORY_HOST'] or 'localhost'}:3054"
  106. docstore:
  107. url : "http://#{process.env['DOCSTORE_HOST'] or 'localhost'}:3016"
  108. pubUrl: "http://#{process.env['DOCSTORE_HOST'] or 'localhost'}:3016"
  109. chat:
  110. url: "http://#{process.env['CHAT_HOST'] or 'localhost'}:3010"
  111. internal_url: "http://#{process.env['CHAT_HOST'] or 'localhost'}:3010"
  112. blog:
  113. url: "http://localhost:3008"
  114. port: 3008
  115. university:
  116. url: "http://localhost:3011"
  117. filestore:
  118. url: "http://#{process.env['FILESTORE_HOST'] or 'localhost'}:3009"
  119. clsi:
  120. url: "http://#{process.env['CLSI_HOST'] or 'localhost'}:3013"
  121. # url: "http://#{process.env['CLSI_LB_HOST']}:3014"
  122. backendGroupName: undefined
  123. templates:
  124. url: "http://#{process.env['TEMPLATES_HOST'] or 'localhost'}:3007"
  125. githubSync:
  126. url: "http://#{process.env['GITHUB_SYNC_HOST'] or 'localhost'}:3022"
  127. recurly:
  128. privateKey: ""
  129. apiKey: ""
  130. subdomain: ""
  131. geoIpLookup:
  132. url: "http://#{process.env['GEOIP_HOST'] or 'localhost'}:8080/json/"
  133. realTime:
  134. url: "http://#{process.env['REALTIME_HOST'] or 'localhost'}:3026"
  135. contacts:
  136. url: "http://#{process.env['CONTACTS_HOST'] or 'localhost'}:3036"
  137. sixpack:
  138. url: ""
  139. references:
  140. url: "http://#{process.env['REFERENCES_HOST'] or 'localhost'}:3040"
  141. notifications:
  142. url: "http://#{process.env['NOTIFICATIONS_HOST'] or 'localhost'}:3042"
  143. analytics:
  144. url: "http://#{process.env['ANALYTICS_HOST'] or 'localhost'}:3050"
  145. linkedUrlProxy:
  146. url: process.env['LINKED_URL_PROXY']
  147. thirdpartyreferences:
  148. url: "http://#{process.env['THIRD_PARTY_REFERENCES_HOST'] or 'localhost'}:3046"
  149. v1:
  150. url: v1Api.url
  151. user: v1Api.user
  152. pass: v1Api.pass
  153. v1_history:
  154. url: "http://#{process.env['V1_HISTORY_HOST'] or "localhost"}:3100/api"
  155. user: 'staging'
  156. pass: 'password'
  157. templates:
  158. user_id: process.env.TEMPLATES_USER_ID or "5395eb7aad1f29a88756c7f2"
  159. showSocialButtons: false
  160. showComments: false
  161. # cdn:
  162. # web:
  163. # host:"http://nowhere.sharelatex.dev"
  164. # darkHost:"http://cdn.sharelatex.dev:3000"
  165. # Where your instance of ShareLaTeX can be found publically. Used in emails
  166. # that are sent out, generated links, etc.
  167. siteUrl : siteUrl = process.env['PUBLIC_URL'] or 'http://localhost:3000'
  168. # Optional separate location for websocket connections, if unset defaults to siteUrl.
  169. wsUrl: process.env['WEBSOCKET_URL']
  170. # cookie domain
  171. # use full domain for cookies to only be accessible from that domain,
  172. # replace subdomain with dot to have them accessible on all subdomains
  173. # cookieDomain: ".sharelatex.dev"
  174. cookieName: "sharelatex.sid"
  175. # this is only used if cookies are used for clsi backend
  176. #clsiCookieKey: "clsiserver"
  177. # Same, but with http auth credentials.
  178. httpAuthSiteUrl: 'http://#{httpAuthUser}:#{httpAuthPass}@#{siteUrl}'
  179. maxEntitiesPerProject: 2000
  180. # Security
  181. # --------
  182. security:
  183. sessionSecret: sessionSecret
  184. bcryptRounds: 12 # number of rounds used to hash user passwords (raised to power 2)
  185. httpAuthUsers: httpAuthUsers
  186. # Default features
  187. # ----------------
  188. #
  189. # You can select the features that are enabled by default for new
  190. # new users.
  191. defaultFeatures: defaultFeatures =
  192. collaborators: -1
  193. dropbox: true
  194. github: true
  195. gitBridge: true
  196. versioning: true
  197. compileTimeout: 180
  198. compileGroup: "standard"
  199. references: true
  200. templates: true
  201. trackChanges: true
  202. features:
  203. personal: defaultFeatures
  204. plans: plans = [{
  205. planCode: "personal"
  206. name: "Personal"
  207. price: 0
  208. features: defaultFeatures
  209. }]
  210. enableSubscriptions:false
  211. enabledLinkedFileTypes: (process.env['ENABLED_LINKED_FILE_TYPES'] or '').split(',')
  212. # i18n
  213. # ------
  214. #
  215. i18n:
  216. subdomainLang:
  217. www: {lngCode:"en", url: siteUrl}
  218. defaultLng: "en"
  219. # Spelling languages
  220. # ------------------
  221. #
  222. # You must have the corresponding aspell package installed to
  223. # be able to use a language.
  224. languages: [
  225. {name: "English", code: "en"},
  226. {name: "French", code: "fr"}
  227. ]
  228. # Password Settings
  229. # -----------
  230. # These restrict the passwords users can use when registering
  231. # opts are from http://antelle.github.io/passfield
  232. # passwordStrengthOptions:
  233. # pattern: "aA$3"
  234. # length:
  235. # min: 6
  236. # max: 128
  237. # Email support
  238. # -------------
  239. #
  240. # ShareLaTeX uses nodemailer (http://www.nodemailer.com/) to send transactional emails.
  241. # To see the range of transport and options they support, see http://www.nodemailer.com/docs/transports
  242. #email:
  243. # fromAddress: ""
  244. # replyTo: ""
  245. # lifecycle: false
  246. ## Example transport and parameter settings for Amazon SES
  247. # transport: "SES"
  248. # parameters:
  249. # AWSAccessKeyID: ""
  250. # AWSSecretKey: ""
  251. # Third party services
  252. # --------------------
  253. #
  254. # ShareLaTeX's regular newsletter is managed by mailchimp. Add your
  255. # credentials here to integrate with this.
  256. # mailchimp:
  257. # api_key: ""
  258. # list_id: ""
  259. #
  260. # Fill in your unique token from various analytics services to enable
  261. # them.
  262. # analytics:
  263. # ga:
  264. # token: ""
  265. #
  266. # ShareLaTeX's help desk is provided by tenderapp.com
  267. # tenderUrl: ""
  268. #
  269. # Client-side error logging is provided by getsentry.com
  270. # sentry:
  271. # src: ""
  272. # publicDSN: ""
  273. #
  274. # src should be either a remote url like
  275. # //cdn.ravenjs.com/1.1.22/jquery,native/raven.min.js
  276. # or a local file in the js/libs directory.
  277. # The publicDSN is the token for the client-side getSentry service.
  278. # Production Settings
  279. # -------------------
  280. # Should javascript assets be served minified or not. Note that you will
  281. # need to run `grunt compile:minify` within the web-sharelatex directory
  282. # to generate these.
  283. useMinifiedJs: process.env['MINIFIED_JS'] == 'true' or false
  284. # Should static assets be sent with a header to tell the browser to cache
  285. # them.
  286. cacheStaticAssets: false
  287. # If you are running ShareLaTeX over https, set this to true to send the
  288. # cookie with a secure flag (recommended).
  289. secureCookie: false
  290. # If you are running ShareLaTeX behind a proxy (like Apache, Nginx, etc)
  291. # then set this to true to allow it to correctly detect the forwarded IP
  292. # address and http/https protocol information.
  293. behindProxy: false
  294. # Cookie max age (in milliseconds). Set to false for a browser session.
  295. cookieSessionLength: 5 * 24 * 60 * 60 * 1000 # 5 days
  296. # When true, only allow invites to be sent to email addresses that
  297. # already have user accounts
  298. restrictInvitesToExistingAccounts: false
  299. # Should we allow access to any page without logging in? This includes
  300. # public projects, /learn, /templates, about pages, etc.
  301. allowPublicAccess: if process.env["SHARELATEX_ALLOW_PUBLIC_ACCESS"] == 'true' then true else false
  302. # editor should be open by default
  303. editorIsOpen: if process.env["EDITOR_OPEN"] == 'false' then false else true
  304. # site should be open by default
  305. siteIsOpen: if process.env["SITE_OPEN"] == 'false' then false else true
  306. # Use a single compile directory for all users in a project
  307. # (otherwise each user has their own directory)
  308. # disablePerUserCompiles: true
  309. # Domain the client (pdfjs) should download the compiled pdf from
  310. # pdfDownloadDomain: "http://clsi-lb:3014"
  311. # Maximum size of text documents in the real-time editing system.
  312. max_doc_length: 2 * 1024 * 1024 # 2mb
  313. # Internal configs
  314. # ----------------
  315. path:
  316. # If we ever need to write something to disk (e.g. incoming requests
  317. # that need processing but may be too big for memory, then write
  318. # them to disk here).
  319. dumpFolder: Path.resolve __dirname + "/../data/dumpFolder"
  320. uploadFolder: Path.resolve __dirname + "/../data/uploads"
  321. # Automatic Snapshots
  322. # -------------------
  323. automaticSnapshots:
  324. # How long should we wait after the user last edited to
  325. # take a snapshot?
  326. waitTimeAfterLastEdit: 5 * minutes
  327. # Even if edits are still taking place, this is maximum
  328. # time to wait before taking another snapshot.
  329. maxTimeBetweenSnapshots: 30 * minutes
  330. # Smoke test
  331. # ----------
  332. # Provide log in credentials and a project to be able to run
  333. # some basic smoke tests to check the core functionality.
  334. #
  335. # smokeTest:
  336. # user: ""
  337. # password: ""
  338. # projectId: ""
  339. appName: "ShareLaTeX (Community Edition)"
  340. adminEmail: "placeholder@example.com"
  341. brandPrefix: "sl-"
  342. nav:
  343. title: "ShareLaTeX Community Edition"
  344. left_footer: [{
  345. text: "Powered by <a href='https://www.sharelatex.com'>ShareLaTeX</a> © 2016"
  346. }]
  347. right_footer: [{
  348. text: "<i class='fa fa-github-square'></i> Fork on Github!"
  349. url: "https://github.com/sharelatex/sharelatex"
  350. }]
  351. showSubscriptionLink: false
  352. header_extras: []
  353. # Example:
  354. # header_extras: [{text: "Some Page", url: "http://example.com/some/page", class: "subdued"}]
  355. customisation: {}
  356. # templates: [{
  357. # name : "cv_or_resume",
  358. # url : "/templates/cv"
  359. # }, {
  360. # name : "cover_letter",
  361. # url : "/templates/cover-letters"
  362. # }, {
  363. # name : "journal_article",
  364. # url : "/templates/journals"
  365. # }, {
  366. # name : "presentation",
  367. # url : "/templates/presentations"
  368. # }, {
  369. # name : "thesis",
  370. # url : "/templates/thesis"
  371. # }, {
  372. # name : "bibliographies",
  373. # url : "/templates/bibliographies"
  374. # }, {
  375. # name : "view_all",
  376. # url : "/templates"
  377. # }]
  378. redirects:
  379. "/templates/index": "/templates/"
  380. reloadModuleViewsOnEachRequest: process.env['NODE_ENV'] != 'production'
  381. domainLicences: [
  382. ]
  383. sixpack:
  384. domain:""
  385. # ShareLaTeX Server Pro options (https://www.sharelatex.com/university/onsite.html)
  386. # ----------
  387. # LDAP
  388. # ----------
  389. # Settings below use a working LDAP test server kindly provided by forumsys.com
  390. # When testing with forumsys.com use username = einstein and password = password
  391. # ldap :
  392. # host: 'ldap://ldap.forumsys.com'
  393. # dn: 'uid=:userKey,dc=example,dc=com'
  394. # baseSearch: 'dc=example,dc=com'
  395. # filter: "(uid=:userKey)"
  396. # failMessage: 'LDAP User Fail'
  397. # fieldName: 'LDAP User'
  398. # placeholder: 'email@example.com'
  399. # emailAtt: 'mail'
  400. # anonymous: false
  401. # adminDN: 'cn=read-only-admin,dc=example,dc=com'
  402. # adminPW: 'password'
  403. # starttls: true
  404. # tlsOptions:
  405. # rejectUnauthorized: false
  406. # ca: ['/etc/ldap/ca_certs.pem']
  407. #templateLinks: [{
  408. # name : "CV projects",
  409. # url : "/templates/cv"
  410. #},{
  411. # name : "all projects",
  412. # url: "/templates/all"
  413. #}]
  414. rateLimits:
  415. autoCompile:
  416. everyone: 100
  417. standard: 25
  418. # currentImage: "texlive-full:2017.1"
  419. # imageRoot: "<DOCKER REPOSITORY ROOT>" # without any trailing slash
  420. compileBodySizeLimitMb: process.env['COMPILE_BODY_SIZE_LIMIT_MB'] or 5
  421. # allowedImageNames: [
  422. # {imageName: 'texlive-full:2017.1', imageDesc: 'TeXLive 2017'}
  423. # {imageName: 'wl_texlive:2018.1', imageDesc: 'Legacy OL TeXLive 2015'}
  424. # {imageName: 'texlive-full:2016.1', imageDesc: 'Legacy SL TeXLive 2016'}
  425. # {imageName: 'texlive-full:2015.1', imageDesc: 'Legacy SL TeXLive 2015'}
  426. # {imageName: 'texlive-full:2014.2', imageDesc: 'Legacy SL TeXLive 2014.2'}
  427. # ]
  428. # module options
  429. # ----------
  430. modules:
  431. sanitize:
  432. options:
  433. allowedTags: [ 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'blockquote', 'p', 'a', 'ul', 'ol', 'nl', 'li', 'b', 'i', 'strong', 'em', 'strike', 'code', 'hr', 'br', 'div', 'table', 'thead', 'col', 'caption', 'tbody', 'tr', 'th', 'td', 'tfoot', 'pre', 'iframe', 'img', 'figure', 'figcaption', 'span', 'source', 'video', 'del' ]
  434. allowedAttributes:
  435. 'a': [ 'href', 'name', 'target', 'class', 'event-tracking', 'event-tracking-ga', 'event-tracking-label', 'event-tracking-trigger' ]
  436. 'div': [ 'class', 'id', 'style' ]
  437. 'h1': [ 'class', 'id' ]
  438. 'h2': [ 'class', 'id' ]
  439. 'h3': [ 'class', 'id' ]
  440. 'h4': [ 'class', 'id' ]
  441. 'h5': [ 'class', 'id' ]
  442. 'h6': [ 'class', 'id' ]
  443. 'col': [ 'width' ]
  444. 'figure': [ 'class', 'id', 'style']
  445. 'figcaption': [ 'class', 'id', 'style']
  446. 'i': [ 'aria-hidden', 'aria-label', 'class', 'id' ]
  447. 'iframe': [ 'allowfullscreen', 'frameborder', 'height', 'src', 'style', 'width' ]
  448. 'img': [ 'alt', 'class', 'src', 'style' ]
  449. 'source': [ 'src', 'type' ]
  450. 'span': [ 'class', 'id', 'style' ]
  451. 'table': [ 'border', 'class', 'id', 'style' ]
  452. 'td': [ 'colspan', 'rowspan', 'headers' ]
  453. 'th': [ 'abbr', 'headers', 'colspan', 'rowspan', 'scope', 'sorted' ]
  454. 'video': [ 'alt', 'class', 'controls', 'height', 'width' ]