Advertisement
Guest User

Untitled

a guest
Mar 28th, 2020
430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. ## JFrog Distribution config file.
  2. ## To comment-out any field and keep correct yaml indentation simply delete the leading '#' character.
  3.  
  4. configVersion: 1
  5.  
  6. ## NOTE: JFROG_HOME is a place holder for the actual root of the deployed product.
  7. ## You should replace JFROG_HOME with the real path!
  8. ## For example, in RPM install, JFROG_HOME=/opt/jfrog
  9.  
  10. ## NOTE: Sensitive information like passwords and join key are encrypted on first read.
  11. ## NOTE: The provided commented key and value is the default.
  12.  
  13. ## A shared section for keys across all services in this config
  14. shared:
  15.  
  16. ## Java 11 distribution to use
  17. #javaHome: "JFROG_HOME/distribution/app/third-party/java"
  18.  
  19. ## Base URL of the JFrog Platform Deployment (JPD)
  20. ## This is the URL to the machine where JFrog Artifactory is deployed, or the load balancer pointing to it. It is recommended to use DNS names rather than direct IPs.
  21. ## Examples: "http://jfrog.acme.com or http://10.20.30.40:8082"
  22. #jfrogUrl:
  23.  
  24. ## Shared security configuration
  25. security:
  26. ## Join key value for joining the cluster (takes precedence over 'joinKeyFile')
  27. #joinKey: ""
  28.  
  29. ## Join key file location
  30. #joinKeyFile: "JFROG_HOME/distribution/var/etc/security/join.key"
  31.  
  32. ## Master key file location
  33. ## Generated by the product on first startup if not provided
  34. #masterKeyFile: "JFROG_HOME/distribution/var/etc/security/master.key"
  35.  
  36. ## Maximum time to wait for key files (master.key and join.key)
  37. #bootstrapKeysReadTimeoutSecs: 120
  38.  
  39. ## Shared logging configuration
  40. logging:
  41. consoleLog:
  42. ## If true, all services' console logs will be redirected to a common console.log
  43. #enabled: true
  44.  
  45. ## Log rotation settings
  46. rotation:
  47. ## The max file size at which enforce rotation
  48. #maxSizeMb: 25
  49.  
  50. ## The number of backup files to maintain
  51. #maxFiles: 10
  52.  
  53. ## Whether to compress the backup file
  54. #compress: true
  55.  
  56. ## Shared node settings
  57. node:
  58. ## A unique id to identify this node.
  59. ## Default: auto generated at startup.
  60. id: "distribution1"
  61.  
  62. ## Default: auto resolved by startup script
  63. ip: 10.146.0.2
  64.  
  65. ## PostgreSQL database used by distribution
  66. database:
  67. #type: postgresql
  68. #driver: org.postgresql.Driver
  69. #url: jdbc:postgresql://localhost:5432/distribution
  70. #username: distribution
  71. #password: password
  72.  
  73. ## Max connections to the database the main connection pool can consume
  74. #maxOpenConnections: 100
  75.  
  76. ## Max idle connections to keep in the connection pool
  77. #maxIdleConnections: 10
  78.  
  79. ## Redis server used by distribution services
  80. redis:
  81. #connectionString: "redis://localhost:6379"
  82. #username:
  83. #password: password
  84. #socketTimeoutMillis: 120000
  85. #resourcePoolMaxSize: 200
  86. #resourcePoolMaxWaitMillis: 60000
  87.  
  88. ## Add any custom environment variables to be passed to all the services
  89. ## Environment variables starting with JF_ are not allowed, will be ignored with a warning if it is added
  90. env:
  91. #EXAMPLE_VAR: example-value
  92. #LD_LIBRARY_PATH: /usr/lib64
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement