example_config.json 766 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "port": 8080,
  3. "rootGitDirectory": "/tmp/wlgb",
  4. "apiBaseUrl": "https://localhost/api/v0",
  5. "postbackBaseUrl": "https://localhost",
  6. "serviceName": "Overleaf",
  7. "oauth2": {
  8. "oauth2ClientID": "asdf",
  9. "oauth2ClientSecret": "asdf",
  10. "oauth2Server": "https://localhost"
  11. },
  12. "repoStore": {
  13. "maxFileNum": 2000,
  14. "maxFileSize": 52428800
  15. },
  16. "swapStore": {
  17. "type": "s3",
  18. "awsAccessKey": "asdf",
  19. "awsSecret": "asdf",
  20. "s3BucketName": "com.overleaf.testbucket",
  21. "awsRegion": "us-east-1"
  22. },
  23. "swapJob": {
  24. "minProjects": 50,
  25. "lowGiB": 128,
  26. "highGiB": 256,
  27. "intervalMillis": 3600000,
  28. "compressionMethod": "gzip"
  29. }
  30. }