Advertisement
evanil

arvados

Nov 18th, 2016
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.79 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5. Application.yml
  6. ---------------------------------------------------------------------------------------------------------------------------------------
  7.  
  8. /usr/src/sso/config/application.yml
  9.  
  10. development:
  11. uuid_prefix: 31wg1
  12. secret_token: 26q1xjzoh7eokuzvs5qjd4qjmk9p84q8b7yph6mew3hmcqv141vd0cmbnqud2faf
  13. 3gz0zl3dummexn
  14. default_link_url: "http://13.79.163.126"
  15. allow_account_registration: true
  16.  
  17. /usr/src/arvados/apps/workbench/config/application.yml
  18.  
  19. development:
  20. secret_token: 3i6nbz4nt1jqtxpbn4qonq2un7ns5gy18bmzzdf4rhhxq4q3hfzd1lptp19ame9i
  21. sgfd0yrhm9e6ko
  22. arvados_login_base: https://13.79.163.126:8000/login
  23. arvados_v1_base: https://13.79.163.126:8000/arvados/v1
  24. arvados_insecure_https: true
  25. keep_web_download_url: http://13.79.163.126:9002/c=%{uuid_or_pdh}
  26. keep_web_url: http://13.79.163.126:9002/c=%{uuid_or_pdh}
  27. arvados_docsite: http://13.79.163.126:8001/
  28.  
  29. /usr/src/arvados/services/api/config/application.yml
  30.  
  31.  
  32. development:
  33. uuid_prefix: humjb
  34. secret_token: 2i1y6tf5ore6xoulaiagy5f3vp0d9m74wegg38ilnfnsk9769rtopwwuqa8wobic
  35. 2bxtr6rnrpxyuc
  36. blob_signing_key: 10k5iz3eg6nfev5z9l4ua7xqhhtqofjqbpunv54og6ybf6utdyv3e69ikol1
  37. ykcrv4fspczf2ayem
  38. sso_app_secret: 19ta4dwphhywm0iz58pc11wr45yzb3n7onsxxloua652y8f5g4lwbkltkrvi8e
  39. sx1slmbp1hy5rdql
  40. sso_app_id: arvados-server
  41. sso_provider_url: "https://13.79.163.126:8900"
  42. sso_insecure: true
  43. workbench_address: "http://13.79.163.126/"
  44. websocket_address: "ws://13.79.163.126:8002/websocket"
  45. git_repo_ssh_base: "git@13.79.163.126:"
  46. git_repo_https_base: "http://13.79.163.126:9001/"
  47. new_users_are_active: true
  48. auto_admin_first_user: true
  49. auto_setup_new_users: true
  50. auto_setup_new_users_with_vm_uuid: humjb-2x53u-30d2urit7nfofdb
  51. auto_setup_new_users_with_repository: true
  52. default_collection_replication: 1
  53.  
  54. ---------------------------------------------------------------------------------------------------------------------------------------
  55.  
  56. /usr/src/sso/config/database.yml
  57.  
  58. production:
  59. adapter: postgresql
  60. encoding: utf8
  61. database: arvados_sso_production
  62. username: arvados_sso
  63. password: d6vggmi1bfk71dkf8b7fhw470
  64. host: localhost
  65. template: template0
  66.  
  67. development:
  68. adapter: postgresql
  69. encoding: utf8
  70. database: arvados_sso_development
  71. username: arvados_sso
  72. password: d6vggmi1bfk71dkf8b7fhw470
  73. host: localhost
  74. template: template0
  75.  
  76. # Warning: The database defined as "test" will be erased and
  77. # re-generated from your development database when you run "rake".
  78. # Do not set this db to the same as development or production.
  79. test:
  80. adapter: postgresql
  81. encoding: utf8
  82. database: arvados_sso_test
  83. username: arvados_sso
  84. password: d6vggmi1bfk71dkf8b7fhw470
  85. host: localhost
  86. template: template0
  87.  
  88. vi /usr/src/arvados/apps/workbench/config/database.yml
  89.  
  90. # Note: The database configuration is not actually used.
  91. development:
  92. adapter: nulldb
  93. test:
  94. adapter: nulldb
  95. production:
  96. adapter: nulldb
  97. diagnostics:
  98. adapter: nulldb
  99. performance:
  100. adapter: nulldb
  101.  
  102. development:
  103. adapter: postgresql
  104. template: template0
  105. encoding: utf8
  106. database: arvados_development
  107. username: arvados
  108. password: 98nmgn843bhdu9p95ozqymvxq
  109. host: localhost
  110.  
  111. test:
  112. adapter: postgresql
  113. template: template0
  114. encoding: utf8
  115. database: arvados_test
  116. username: arvados
  117. password: 98nmgn843bhdu9p95ozqymvxq
  118. host: localhost
  119.  
  120. production:
  121. adapter: postgresql
  122. template: template0
  123. encoding: utf8
  124. database: arvados_production
  125. username: arvados
  126. password: 98nmgn843bhdu9p95ozqymvxq
  127. host: localhost
  128. # For the websockets server, prefer a larger database connection pool size sin
  129. ce it
  130. # multithreaded and can serve a large number of long-lived clients. See also
  131. # websocket_max_connections configuration option.
  132. pool: 50
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement