各种笔记
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

77 行
1.7 KiB

  1. # ArangoDB configuration file
  2. #
  3. # Documentation:
  4. # https://docs.arangodb.com/latest/Manual/Administration/Configuration/
  5. #
  6. [database]
  7. directory = /var/lib/arangodb3
  8. # maximal-journal-size = 33554432
  9. [server]
  10. # Specify the iendpoint for HTTP requests by clients.
  11. # tcp://ipv4-address:port
  12. # tcp://[ipv6-address]:port
  13. # ssl://ipv4-address:port
  14. # ssl://[ipv6-address]:port
  15. # unix:///path/to/socket
  16. #
  17. # Examples:
  18. endpoint = tcp://0.0.0.0:8529
  19. # endpoint = tcp://171.221.139.17:8529
  20. # endpoint = tcp://localhost:8529
  21. # endpoint = tcp://myserver.arangodb.com:8529
  22. # endpoint = tcp://[::]:8529
  23. # endpoint = tcp://[fe80::21a:5df1:aede:98cf]:8529
  24. #
  25. # endpoint = tcp://127.0.0.1:8529
  26. storage-engine = rocksdb
  27. # reuse a port on restart or wait until it is freed by the operating system
  28. # reuse-address = false
  29. authentication = true
  30. # number of maximal server threads. use 0 to make arangod determine the
  31. # number of threads automatically, based on available CPUs
  32. # maximal-threads = 0
  33. # gather server statistics
  34. statistics = true
  35. # the user and group are normally set in the start script
  36. # uid = arangodb
  37. # gid = arangodb
  38. uid = arangodb
  39. [javascript]
  40. startup-directory = /usr/share/arangodb3/js
  41. app-path = /var/lib/arangodb3-apps
  42. # app-path = //arangodb3/apps
  43. # number of V8 contexts available for JavaScript execution. use 0 to
  44. # make arangod determine the number of contexts automatically.
  45. # v8-contexts = 0
  46. [foxx]
  47. # enable Foxx queues in the server
  48. # queues = true
  49. # interval (seconds) to use for polling jobs in Foxx queues
  50. # queues-poll-interval = 1
  51. [log]
  52. level = info
  53. file = /var/log/arangodb3/arangod.log
  54. [cluster]
  55. [rocksdb]
  56. # encryption-keyfile=/your-encryption-file
  57. #
  58. [http]
  59. keep-alive-timeout = 5000000
  60. hide-product-header = true