Advertisement
Guest User

Untitled

a guest
Aug 10th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. {
  2. "name" : "repo",
  3. "jndiName" : "",
  4. "workspaces" : {
  5. "predefined" : ["default"],
  6. "default" : "default",
  7. "allowCreation" : true
  8. },
  9. "storage" : {
  10. "persistence": {
  11. "type" : "db",
  12. "connectionUrl": "jdbc:postgresql://${fcrepo.postgresql.host:localhost}:${fcrepo.postgresql.port:5432}/fcrepo",
  13. "driver" : "org.postgresql.Driver",
  14. "username" : "${fcrepo.postgresql.username}",
  15. "password" : "${fcrepo.postgresql.password}"
  16. },
  17. "binaryStorage" : {
  18. "type" : "file",
  19. "directory" : "${fcrepo.binary.directory:target/binaries}",
  20. "minimumBinarySizeInBytes" : 4096
  21. }
  22. },
  23. "security" : {
  24. "anonymous" : {
  25. "roles" : ["readonly","readwrite","admin"],
  26. "useOnFailedLogin" : false
  27. },
  28. "providers" : [
  29. { "classname" : "org.fcrepo.auth.common.BypassSecurityServletAuthenticationProvider" }
  30. ]
  31. },
  32. "node-types" : ["fedora-node-types.cnd"],
  33. "indexProviders" : {
  34. "local" : {
  35. "classname" : "local",
  36. "directory" : "target/indexes/local"
  37. }
  38. },
  39. "indexes" : {
  40. "uuid" : {
  41. "provider" : "local",
  42. "columns" : "jcr:uuid(STRING)",
  43. "kind" : "unique"
  44. },
  45. "primaryType" : {
  46. "provider" : "local",
  47. "columns" : "jcr:primaryType(STRING)",
  48. "kind" : "nodetype"
  49. },
  50. "path" : {
  51. "provider" : "local",
  52. "columns" : "jcr:path(PATH)"
  53. },
  54. "proxyFor" : {
  55. "provider" : "local",
  56. "columns" : "ore:proxyFor_ref(REFERENCE)"
  57. }
  58. },
  59. "reindexing" : {
  60. "async" : false
  61. }
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement