Advertisement
Guest User

Untitled

a guest
Jul 13th, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 KB | None | 0 0
  1. Build Info:
  2. RHEL7.2
  3. Jenkins 2.13-1.1
  4. McAfee VSE
  5. Firewall: Disabled
  6. SELinux: Disabled
  7.  
  8. ## Path: Development/Jenkins
  9. ## Description: Jenkins Continuous Integration Server
  10. ## Type: string
  11. ## Default: "/var/lib/jenkins"
  12. ## ServiceRestart: jenkins
  13. #
  14. # Directory where Jenkins store its configuration and working
  15. # files (checkouts, build reports, artifacts, ...).
  16. #
  17. JENKINS_HOME="/var/lib/jenkins"
  18.  
  19. ## Type: string
  20. ## Default: ""
  21. ## ServiceRestart: jenkins
  22. #
  23. # Java executable to run Jenkins
  24. # When left empty, we'll try to find the suitable Java.
  25. #
  26. JENKINS_JAVA_CMD=""
  27.  
  28. ## Type: string
  29. ## Default: "jenkins"
  30. ## ServiceRestart: jenkins
  31. #
  32. # Unix user account that runs the Jenkins daemon
  33. # Be careful when you change this, as you need to update
  34. # permissions of $JENKINS_HOME and /var/log/jenkins.
  35. #
  36. JENKINS_USER="jenkins"
  37.  
  38. ## Type: string
  39. ## Default: "false"
  40. ## ServiceRestart: jenkins
  41. #
  42. # Whether to skip potentially long-running chown at the
  43. # $JENKINS_HOME location. Do not enable this, "true", unless
  44. # you know what you're doing. See JENKINS-23273.
  45. #
  46. #JENKINS_INSTALL_SKIP_CHOWN="false"
  47.  
  48. ## Type: string
  49. ## Default: "-Djava.awt.headless=true"
  50. ## ServiceRestart: jenkins
  51. #
  52. # Options to pass to java when running Jenkins.
  53. #
  54. JENKINS_JAVA_OPTIONS="-Djava.awt.headless=true"
  55.  
  56. ## Type: integer(0:65535)
  57. ## Default: 8080
  58. ## ServiceRestart: jenkins
  59. #
  60. # Port Jenkins is listening on.
  61. # Set to -1 to disable
  62. #
  63. JENKINS_PORT=""
  64.  
  65. ## Type: string
  66. ## Default: ""
  67. ## ServiceRestart: jenkins
  68. #
  69. # IP address Jenkins listens on for HTTP requests.
  70. # Default is all interfaces (0.0.0.0).
  71. #
  72. JENKINS_LISTEN_ADDRESS=""
  73.  
  74. ## Type: integer(0:65535)
  75. ## Default: ""
  76. ## ServiceRestart: jenkins
  77. #
  78. # HTTPS port Jenkins is listening on.
  79. # Default is disabled.
  80. #
  81. JENKINS_HTTPS_PORT=""
  82.  
  83. ## Type: string
  84. ## Default: ""
  85. ## ServiceRestart: jenkins
  86. #
  87. # Path to the keystore in JKS format (as created by the JDK 'keytool').
  88. # Default is disabled.
  89. #
  90. JENKINS_HTTPS_KEYSTORE=""
  91.  
  92. ## Type: string
  93. ## Default: ""
  94. ## ServiceRestart: jenkins
  95. #
  96. # Password to access the keystore defined in JENKINS_HTTPS_KEYSTORE.
  97. # Default is disabled.
  98. #
  99. JENKINS_HTTPS_KEYSTORE_PASSWORD=""
  100.  
  101. ## Type: string
  102. ## Default: ""
  103. ## ServiceRestart: jenkins
  104. #
  105. # IP address Jenkins listens on for HTTPS requests.
  106. # Default is disabled.
  107. #
  108. JENKINS_HTTPS_LISTEN_ADDRESS=""
  109.  
  110.  
  111. ## Type: integer(1:9)
  112. ## Default: 5
  113. ## ServiceRestart: jenkins
  114. #
  115. # Debug level for logs -- the higher the value, the more verbose.
  116. # 5 is INFO.
  117. #
  118. JENKINS_DEBUG_LEVEL="5"
  119.  
  120. ## Type: yesno
  121. ## Default: no
  122. ## ServiceRestart: jenkins
  123. #
  124. # Whether to enable access logging or not.
  125. #
  126. JENKINS_ENABLE_ACCESS_LOG="no"
  127.  
  128. ## Type: integer
  129. ## Default: 100
  130. ## ServiceRestart: jenkins
  131. #
  132. # Maximum number of HTTP worker threads.
  133. #
  134. JENKINS_HANDLER_MAX="100"
  135.  
  136. ## Type: integer
  137. ## Default: 20
  138. ## ServiceRestart: jenkins
  139. #
  140. # Maximum number of idle HTTP worker threads.
  141. #
  142. JENKINS_HANDLER_IDLE="20"
  143.  
  144. ## Type: string
  145. ## Default: ""
  146. ## ServiceRestart: jenkins
  147. #
  148. # Pass arbitrary arguments to Jenkins.
  149. # Full option list: java -jar jenkins.war --help
  150. #
  151. JENKINS_ARGS="-Dhudson.diyChunking=false --httpsPort=8443 --httpsCertificate=/var/lib/jenkins/certificates/dev-jenkins.pbs.gsa.gov.cer --httpsPrivateKey=/var/lib/jenkins/certificates/dev-jenkins.pbs.gsa.gov.key"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement