summaryrefslogtreecommitdiff
path: root/jenkins/jenkins.conf
blob: caa240d71a5eb20d9d524f40c013740139a3180e (plain)
    1 ## Path:        Development/Jenkins
    2 ## Description: Configuration for the Jenkins continuous build server
    3 ## Type:        string
    4 ## Default:     "/var/lib/jenkins"
    5 ## ServiceRestart: jenkins
    6 #
    7 # Directory where Jenkins store its configuration and working
    8 # files (checkouts, build reports, artifacts, ...).
    9 #
   10 JENKINS_HOME="/var/lib/jenkins"
   11 
   12 ## Type:        string
   13 ## Default:     "jenkins"
   14 ## ServiceRestart: jenkins
   15 #
   16 # Unix user account that runs the Jenkins daemon
   17 # Be careful when you change this, as you need to update
   18 # permissions of $JENKINS_HOME and /var/log/jenkins.
   19 #
   20 JENKINS_USER="jenkins"
   21 
   22 ## Type:        string
   23 ## Default:     "-Djava.awt.headless=true"
   24 ## ServiceRestart: jenkins
   25 #
   26 # Options to pass to java when running Jenkins.
   27 #
   28 JENKINS_JAVA_OPTIONS="-Djava.awt.headless=true -Dorg.apache.commons.jelly.tags.fmt.timeZone=Europe/Madrid"
   29 
   30 ## Type:        integer(0:65535)
   31 ## Default:     8080
   32 ## ServiceRestart: jenkins
   33 #
   34 # Port Jenkins is listening on.
   35 # Set to -1 to disable
   36 #
   37 JENKINS_PORT="8080"
   38 
   39 ## Type:        string
   40 ## Default:     ""
   41 ## ServiceRestart: jenkins
   42 #
   43 # IP address Jenkins listens on for HTTP requests.
   44 # Default is all interfaces (0.0.0.0).
   45 #
   46 JENKINS_LISTEN_ADDRESS=""
   47 
   48 ## Type:        integer(0:65535)
   49 ## Default:     ""
   50 ## ServiceRestart: jenkins
   51 #
   52 # HTTPS port Jenkins is listening on.
   53 # Default is disabled.
   54 #
   55 JENKINS_HTTPS_PORT=""
   56 
   57 ## Type:        string
   58 ## Default:     ""
   59 ## ServiceRestart: jenkins
   60 #
   61 # Path to the keystore in JKS format (as created by the JDK 'keytool').
   62 # Default is disabled.
   63 #
   64 JENKINS_HTTPS_KEYSTORE=""
   65 
   66 ## Type:        string
   67 ## Default:     ""
   68 ## ServiceRestart: jenkins
   69 #
   70 # Password to access the keystore defined in JENKINS_HTTPS_KEYSTORE.
   71 # Default is disabled.
   72 #
   73 JENKINS_HTTPS_KEYSTORE_PASSWORD=""
   74 
   75 ## Type:        string
   76 ## Default:     ""
   77 ## ServiceRestart: jenkins
   78 #
   79 # IP address Jenkins listens on for HTTPS requests.
   80 # Default is disabled.
   81 #
   82 JENKINS_HTTPS_LISTEN_ADDRESS=""
   83 
   84 ## Type:        integer(0:65535)
   85 ## Default:     8009
   86 ## ServiceRestart: jenkins
   87 #
   88 # Ajp13 Port Jenkins is listening on.
   89 # Set to -1 to disable
   90 #
   91 JENKINS_AJP_PORT="-1"
   92 
   93 ## Type:        string
   94 ## Default:     ""
   95 ## ServiceRestart: jenkins
   96 #
   97 # IP address Jenkins listens on for Ajp13 requests.
   98 # Default is all interfaces (0.0.0.0).
   99 #
  100 JENKINS_AJP_LISTEN_ADDRESS=""
  101 
  102 ## Type:        integer(1:9)
  103 ## Default:     5
  104 ## ServiceRestart: jenkins
  105 #
  106 # Debug level for logs -- the higher the value, the more verbose.
  107 # 5 is INFO.
  108 #
  109 JENKINS_DEBUG_LEVEL="5"
  110 
  111 ## Type:        yesno
  112 ## Default:     no
  113 ## ServiceRestart: jenkins
  114 #
  115 # Whether to enable access logging or not.
  116 #
  117 JENKINS_ENABLE_ACCESS_LOG="no"
  118 
  119 ## Type:        integer
  120 ## Default:     100
  121 ## ServiceRestart: jenkins
  122 #
  123 # Maximum number of HTTP worker threads.
  124 #
  125 JENKINS_HANDLER_MAX="100"
  126 
  127 ## Type:        integer
  128 ## Default:     20
  129 ## ServiceRestart: jenkins
  130 #
  131 # Maximum number of idle HTTP worker threads.
  132 #
  133 JENKINS_HANDLER_IDLE="20"
  134 
  135 ## Type:        string
  136 ## Default:     ""
  137 ## ServiceRestart: jenkins
  138 #
  139 # Pass arbitrary arguments to Jenkins.
  140 # Full option list: java -jar jenkins.war --help
  141 #
  142 JENKINS_ARGS=""

Generated by cgit