application.yml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. # Configuration for repository.
  2. graph:
  3. # Name of the "main" graph containing metadata about all resources.
  4. #
  5. # Default: main
  6. main_graph: main
  7. # Configuration for binary path and fixity check generation. The hash is a
  8. # checksumn of the contents of the file.
  9. uuid:
  10. # Algorithm used to calculate the hash that generates the content path.
  11. # One of: sha1, sha224, sha256, sha384, or sha512, corresponding to the
  12. # omonymous hashlib function.
  13. #
  14. # Default: sha1.
  15. algo: sha1
  16. # Data store configuration.
  17. store:
  18. # The semantic store used for persisting LDP-RS (RDF Source) resources.
  19. # MUST support SPARQL 1.1 query and update.
  20. ldp_rs:
  21. # Store layout. This corresponds to a sub-class of the
  22. # `lakesuperior.store_layouts.rdf.base_rdf_layout/BaseRdfLayout`.
  23. layout: simple_layout
  24. # Whether to check if the object of a client-provided triple is the URI
  25. # of a repository-managed resource and veify if that exists.
  26. # If set to false, properties are allowed to point to resources in the
  27. # repositoy that do not exist. Also, if a resource is deleted, inbound
  28. # relationships may not be cleaned up.
  29. # This can be one of `none`, `lenient` or `strict`. `none` does not
  30. # check for referential integrity. `lenient` quietly drops a
  31. # user-provided triple if its # object violates referential integrity.
  32. # `strict` raises an exception.
  33. referential_integrity: lenient
  34. webroot: http://localhost:9999/namespace/fcrepo/
  35. query_ep: sparql
  36. update_ep: sparql
  37. # Optional
  38. #username: <set me>
  39. #password: <set me>
  40. #ssl_verify: false
  41. # The path used to persist LDP-NR (bitstreams).
  42. # This is for now a POSIX filesystem. Other solutions such as HDFS may be
  43. # possible in the future.
  44. ldp_nr:
  45. # See store.ldp_rs.layout.
  46. layout: default_layout
  47. # The filesystem path to the root of the binary store.
  48. path: /data/fcrepo/ldpnr_store
  49. # How to split the balanced pairtree to generate a path. The hash
  50. # string is defined by the uuid.algo parameter value.
  51. # This parameter defines how many characters are in each branch. 2-4 is
  52. # the recommended setting. NOTE: a value of 2 will generate up to 256
  53. # sub-folders in a folder; 3 will generate max. 4096 and 4 will
  54. # generate max. 65536. Check your filesystem capabilities before
  55. # setting this to a non-default value.
  56. #
  57. # Default: 2
  58. pairtree_branch_length: 2
  59. # Max. number of branches to generate. 0 will split the string until
  60. # it reaches the end.
  61. # E.g. if the hash value is 0123456789abcdef01234565789abcdef and the
  62. # branch length value is 2, and the branch number is 4, the path will
  63. # be 01/23/45/67/89abcdef01234565789abcdef. For a value of 0 it will be
  64. # 01/23/45/67/89/ab/cd/ef/01/23/45/67/89/ab/cd/ef. Check your system
  65. # capabilities for maximum nested directories before setting this to 0,
  66. # especially with longer hash algorithms.
  67. #
  68. # Default: 4
  69. pairtree_branches: 4
  70. # Configuration for messaging.
  71. messaging:
  72. # List of channels to send messages to.
  73. # Each channel must define the `endpoint` and the `level` parameters.
  74. routes:
  75. # The destination of the message. Currently only the STOMP protocol
  76. # is supported.
  77. - endpoint: stomp://localhost:61613
  78. # Message format: at the moment only `ActivityStreamsFormatter` is
  79. # supported.
  80. formatter: ActivityStreamsFormatter
  81. # Output handler. Currently only `StompHandler` is supported.
  82. handler: StompHandler
  83. # Granularity level of messages. It can be one of:
  84. # - `none`: No message are ever sent.
  85. # - `resource`: Messages are sent whenever a resource is created,
  86. # updated or deleted. No details about what changed is included.
  87. # - `provenance`: up to two messages are sent for each individual
  88. # request: one for the added triples and one for the deleted triples.
  89. level: resource