application.yml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. ### Default repository configuration.
  2. #
  3. # Copy this file or parts of it in a separate location to override these
  4. # settings. Individual items can be selectively overridden as long as the YAML
  5. # hierarchical structure is kept.
  6. # Set app_mode to either 'prod', 'test' or 'dev'.
  7. # 'prod' is normal running mode. 'test' is used for running test suites.
  8. # 'dev' is similar to normal mode but with reload and debug enabled.
  9. app_mode: 'prod'
  10. ### Base data directory.
  11. # This contains both volatile files such as PID files,
  12. # and persistent ones, such as resource data. LDP-NRs will be stored under
  13. # <basedir>/ldpnr_store and LDP-RSs under <basedir>/ldprs_store.
  14. #
  15. # If different data files need to be running on different storage hardware,
  16. # the individual subdirectories can be mounted on different file systems.
  17. #
  18. # If unset, it will default to <lakesuperior package root>/data.
  19. data_dir:
  20. # Configuration for binary path and fixity check generation. The hash is a
  21. # checksumn of the contents of the file.
  22. uuid:
  23. ### Algorithm used to calculate the hash that generates the content path.
  24. # This can be any one of the Python hashlib functions:
  25. # https://docs.python.org/3/library/hashlib.html
  26. #
  27. # This needs to be ``sha1`` if a compatibility with the Fedora4 file layout
  28. # is needed, however in security-sensitive environments it is strongly
  29. # advised to use a stronger algorithm, since SHA1 is known to be
  30. # vulnerable to counterfeiting: see https://shattered.io/
  31. #
  32. # `blake2b` is a strong, fast cryptographic alternative to SHA2/3:
  33. # https://blake2.net/
  34. algo: sha1
  35. # Data store configuration.
  36. store:
  37. # The semantic store used for persisting LDP-RS (RDF Source) resources.
  38. # MUST support SPARQL 1.1 query and update.
  39. ldp_rs:
  40. ### Store layout.
  41. # At the moment, only `rsrc_centric_layout`is supported.
  42. layout: rsrc_centric_layout
  43. ### whether to check if the object of a client-provided triple is the
  44. # uri of a repository-managed resource and veify if that exists. if set
  45. # to false, properties are allowed to point to resources in the
  46. # repositoy that do not exist. also, if a resource is deleted, inbound
  47. # relationships may not be cleaned up. this can be one of `False`
  48. # (boolean), `lenient` or `strict`. `False` does not check for
  49. # referential integrity. `lenient` quietly drops a user-provided triple
  50. # if its object violates referential integrity. `strict` raises an
  51. # exception.
  52. #
  53. # Changes to this parameter require a full migration.
  54. referential_integrity: lenient
  55. ### this mimics Fedora4 behavior which segments an identifier on POST.
  56. legacy_ptree_split: False
  57. ### The path used to persist LDP-NR (bitstreams).
  58. # This is for now a POSIX filesystem. Other solutions such as HDFS may be
  59. # possible in the future.
  60. ldp_nr:
  61. # See store.ldp_rs.layout.
  62. layout: default_layout
  63. ### How to split the balanced pairtree to generate a path.
  64. # The hash string is defined by the uuid.algo parameter value.
  65. # This parameter defines how many characters are in each branch. 2-4 is
  66. # the recommended setting. NOTE: a value of 2 will generate up to 256
  67. # sub-folders in a folder; 3 will generate max. 4096 and 4 will
  68. # generate max. 65536. Check your filesystem capabilities before
  69. # setting this to a non-default value.
  70. #
  71. # Changes to this parameter require a full migration.
  72. pairtree_branch_length: 2
  73. ### Max. number of branches to generate. 0 will split the string until
  74. # it reaches the end.
  75. # E.g. if the hash value is 0123456789abcdef01234565789abcdef and the
  76. # branch length value is 2, and the branch number is 4, the path will
  77. # be 01/23/45/67/89abcdef01234565789abcdef. For a value of 0 it will be
  78. # 01/23/45/67/89/ab/cd/ef/01/23/45/67/89/ab/cd/ef. Be aware that deeply
  79. # nested directory structures may tax some of the operating system's
  80. # services that scan for files, such as `updatedb`. Check your system
  81. # capabilities for maximum nested directories before changing the
  82. # default.
  83. #
  84. # Changes to this parameter require a full migration.
  85. pairtree_branches: 4
  86. ### Configuration for messaging.
  87. messaging:
  88. ### List of channels to send messages to.
  89. # Each channel must define the `endpoint` and the `level` parameters.
  90. routes:
  91. ### Output handler. Currently only `StompHandler` is supported.
  92. - handler: StompHandler
  93. ### Whether this route is used. It False, no messages will be emitted
  94. # for this route.
  95. active: True
  96. ### Protocol version. One of `10`, `11` or `12`.
  97. protocol: '11'
  98. ### Host IP address.
  99. host: 127.0.0.1
  100. ### Host port.
  101. port: 61613
  102. ### User name for authentication.
  103. # Credentials are optional.
  104. username:
  105. ### Password for authentication.
  106. password:
  107. ### Message topic.
  108. destination: '/topic/fcrepo'
  109. ### Message format: at the moment the following are supported:
  110. # - `ASResourceFormatter`: Sends information about a resource being
  111. # created, updated or deleted, by who and when, with no further
  112. # information about what changed.
  113. # - `ASDeltaFormatter`: Sends the same information as
  114. # `ASResourceFormatter` with the addition of the triples that were
  115. # added and the ones that were removed in the request. This may be
  116. # used to send rich provenance data to a preservation system.
  117. formatter: ASResourceFormatter