Advertisement
Guest User

Untitled

a guest
May 18th, 2017
535
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. ## K-Link Setup YAML configuration file
  2. ## Proposal for the new klink-setup configuration file
  3.  
  4. ## File version number
  5. version: 1 # Q: Is this internal (K-Link) version, or refering to anything else? Should we go with the major releases of our API then?
  6.  
  7. ## General environment section
  8. environment:
  9. type: "k-link"
  10. institution: "KLINK" # Q: Deprecated soon?
  11. timezone: "Europe/Berlin"
  12. domain: "my-k-link-network.com"
  13.  
  14.  
  15. subfolder: "dms" # Q: Is this necessary or could be ommited?
  16. security:
  17. certificate: './ssl-cert-klink.crt'
  18. key: './ssl-cert-klink.key'
  19. offline: true ## or false => true means that a DNS server must be configured
  20. ip_address: "192.168.0.2" ## mandatory if offline === true
  21.  
  22.  
  23. ## K-Box service specific configuration
  24. k-box: # acceptable only if environment is "k-box"
  25. version: "0.16.0"
  26. configuration:
  27. admin:
  28. username: "user"
  29. password: "password"
  30. database:
  31. name: "dms"
  32. prefix: "dms_" # Q: Can we make this optional?
  33. username: "dms"
  34. password: "bababa..."
  35. root_password: "bbbb..." # Q: Why do we need root?
  36. k-search:
  37. username: "admin@klink.org"
  38. password: "12345"
  39. appkey: "2ff..." # Q: What is the appkey? app_secret?
  40. storage: "./mnt/k-box"
  41. # Will be created automatically based on "storage"
  42. # data: "./mnt/k-box/archives"
  43. # database: "./mnt/k-box/database"
  44. advanced:
  45. memory_limit: 500
  46. max_upload_size: 1572864
  47.  
  48.  
  49. ## K-Search service specific configuration
  50. k-search:
  51. version: "2.6.0"
  52. solr_version: "5.5.4"
  53. mode: "public"
  54. storage: "./mnt/k-search"
  55. # Will be created automatically based on "storage"
  56. #logs: "./mnt/k-search/logs"
  57. #data: "./mnt/k-search/data"
  58. #index: "./mnt/k-search/index"
  59. authentication:
  60. users: './kcore/kcore-clients-real.yml'
  61. tokens: './kcore/tokens.yml' # Q: Why there are two?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement