settings.defaults.coffee 12 KB

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