example_config.json 727 B

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