Advertisement
lamiastella

xnat build_properties

Sep 2nd, 2016
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.82 KB | None | 0 0
  1. # WINDOWS USERS: The '\' character is not supported by Maven. Do not use the '\' character in your file paths.
  2. # Replace any '\' characters with the '/'. The '/' works as a file path separator on UNIX and WINDOWS.
  3.  
  4. # NOTE: All file paths should be absolute, not relative to the xnat_builder folder. This means that, if your
  5. # pipeline or modules folder is in the same relative folder as your xnat_builder folder, you should still use
  6. # the full path to those folders instead of ../pipeline or ../modules.
  7. maven.repo.remote = https://nrgxnat.artifactoryonline.com/nrgxnat/xnat-maven1
  8. maven.appserver.home = TOMCAT_HOME
  9.  
  10. # Default XNAT site title, also used as mail subject prefix.
  11. xnat.site.title=XNAT
  12.  
  13. xdat.project.name=xnat
  14. xdat.project.db.name=xnat
  15. xdat.project.db.driver=org.postgresql.Driver
  16. xdat.project.db.connection.string=jdbc:postgresql://localhost/xnat
  17. xdat.project.db.user=postgres
  18. xdat.project.db.password=1234
  19.  
  20. # IMAGE FILE LOCATION (FOR USE WITH THE xnat TEMPLATE)
  21. # Location where image data will be stored, e.g. /tmp/archive.
  22. # As with all folder locations, these paths should be absolute, not relative to your xnat_builder location.
  23. # UNIX Users: For easier setup, we recommend that the data directories specified below (archive, prearchive, cache, etc.) be owned by the same user account which will execute Tomcat.
  24. xdat.archive.location=/Library/XNAT/archive
  25.  
  26. # Location where image data is stored temporarily before it is moved into the archive, e.g. /tmp/prearchive.
  27. xdat.prearchive.location=/Library/XNAT/prearchive
  28.  
  29. # Location where cached image data is stored, e.g. /tmp/cache.
  30. xdat.cache.location=/Library/XNAT/cache
  31.  
  32. # Location for ftp data
  33. xdat.ftp.location=/Library/XNAT/ftp
  34.  
  35. # Location for build data.
  36. xdat.build.location=/Library/XNAT/build
  37.  
  38. # Location of your pipeline installation.
  39. # If you have pipeline installed outside of your xnat_builder folder, un-comment this property to set it
  40. # the appropriate location. As with all folder locations, these paths should be absolute, not relative to
  41. ://mail.google.com/mail/u/0/#inbox!--
  42. # your xnat_builder location.
  43. # xdat.pipeline.installer.location=/Library/XNAT/pipeline-installer
  44. # xdat.pipeline.deployment.location=/Library/XNAT/pipeline
  45. # xdat.pipeline.modules.locations=/Library/XNAT/pipeline_modules
  46.  
  47. # Mail server, port, and protocol. Standard SMTP port is 25 or 587, Google SMTPS port is 465. See the
  48. # sample configuration files in plugin-resources/conf for examples in how to set up SMTPS servers, as well
  49. # as encrypted mail service credentials.
  50. xdat.mail.server=mail.server
  51. xdat.mail.port=25
  52. xdat.mail.protocol=smtp
  53.  
  54. # Mail server credentials. These values are only required for mail servers with authentication turned on.
  55. xdat.mail.username=
  56. xdat.mail.password=
  57.  
  58. # The email address for the XNAT system administrator.
  59. xdat.mail.admin=administrator@xnat.org
  60.  
  61. # The URL for your XNAT server installation, e.g. http://localhost:8080/xnat
  62. xdat.url=URL
  63.  
  64. # 'xdat.require_login' must be set to 'true' or 'false'. It governs whether or not users will be
  65. # prompted to login when visiting the site. If true, users will be required to login. If false,
  66. # users will be automatically logged in using an XNAT guest account.
  67. xdat.require_login=true
  68.  
  69. # 'xdat.enable_new_registrations' must be set to 'true' or 'false'. Users are provided with a
  70. # link on the Login.vm page to register for a new account. If this variable is true, that newly
  71. # registered account will be automatically enabled and the user will be allowed to immediately login.
  72. # If this is false, then an email will be sent to the admin (xdat.admin_email) requesting that the
  73. # account be enabled, and the user will be unable to login until the account is enabled.
  74. xdat.enable_new_registrations=false
  75.  
  76. # The modules location setting indicates where custom modules are located. The setup/update scripts
  77. # always look in the modules subfolder of the xnat_builder installation, but will also look in the
  78. # indicated folder if this is set.
  79. # xdat.modules.location=/Library/XNAT/modules
  80.  
  81. # 'xdat.security.channel' specifies what type of HTTP connection should be configured for the XNAT
  82. # server. This has three possible values:
  83. # * http indicates that the server MUST be unencrypted http connection
  84. # * https indicates that the server MUST be an SSL-encrypted https connection
  85. # * any indicates that the server can use either an unencrypted or SSL-encrypted connection
  86. # Production servers or any server on a network that can be reached from outside the hosting network
  87. # should always use https.
  88. xdat.security.channel=any
  89.  
  90. # 'xdat.enable_csrf_token' must be set to 'true' or 'false'. It governs whether or not POST, PUT, & DELETEs
  91. # are protected by a csrf token. If true, a CSRF token will be required. If false,
  92. # the test for a valid token are skipped.
  93. xdat.enable_csrf_token=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement