development.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "databaseUrl": "postgres://postgres:postgres@postgres/write_latex_dev",
  3. "persistor": {
  4. "s3": {
  5. "endpoint": "http://s3:8080",
  6. "pathStyle": "true"
  7. },
  8. "gcs": {
  9. "unsignedUrls": "true",
  10. "endpoint": {
  11. "apiEndpoint": "http://fake-gcs:9090",
  12. "projectId": "fake"
  13. }
  14. }
  15. },
  16. "blobStore": {
  17. "globalBucket": "overleaf-development-blobs",
  18. "projectBucket": "overleaf-development-project-blobs"
  19. },
  20. "chunkStore": {
  21. "bucket": "overleaf-development-chunks"
  22. },
  23. "zipStore": {
  24. "bucket": "overleaf-development-zips"
  25. },
  26. "backupStore": {
  27. "chunksBucket": "overleaf-development-history-chunks",
  28. "deksBucket": "overleaf-development-history-deks",
  29. "globalBlobsBucket": "overleaf-development-history-global-blobs",
  30. "projectBlobsBucket": "overleaf-development-history-project-blobs"
  31. },
  32. "backupPersistor": {
  33. "keyEncryptionKeys": "[{\"key\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=\",\"salt\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=\"}]",
  34. "s3SSEC": {
  35. "ca": "[\"/certs/public.crt\"]"
  36. }
  37. },
  38. "useDeleteObjects": "false",
  39. "mongo": {
  40. "uri": "mongodb://mongo:27017/sharelatex"
  41. },
  42. "basicHttpAuth": {
  43. "password": "password"
  44. },
  45. "jwtAuth": {
  46. "key": "secureKey",
  47. "algorithm": "HS256"
  48. }
  49. }