You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gitblit.properties 20KB

12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675
  1. #
  2. # Git Servlet Settings
  3. #
  4. # Base folder for repositories.
  5. # This folder may contain bare and non-bare repositories but Gitblit will only
  6. # allow you to push to bare repositories.
  7. # Use forward slashes even on Windows!!
  8. # e.g. c:/gitrepos
  9. #
  10. # SINCE 0.5.0
  11. # RESTART REQUIRED
  12. git.repositoriesFolder = git
  13. # Search the repositories folder subfolders for other repositories.
  14. # Repositories MAY NOT be nested (i.e. one repository within another)
  15. # but they may be grouped together in subfolders.
  16. # e.g. c:/gitrepos/libraries/mylibrary.git
  17. # c:/gitrepos/libraries/myotherlibrary.git
  18. #
  19. # SINCE 0.5.0
  20. git.searchRepositoriesSubfolders = true
  21. # Allow push/pull over http/https with JGit servlet.
  22. # If you do NOT want to allow Git clients to clone/push to Gitblit set this
  23. # to false. You might want to do this if you are only using ssh:// or git://.
  24. # If you set this false, consider changing the *web.otherUrls* setting to
  25. # indicate your clone/push urls.
  26. #
  27. # SINCE 0.5.0
  28. git.enableGitServlet = true
  29. # Only serve/display bare repositories.
  30. # If there are non-bare repositories in git.repositoriesFolder and this setting
  31. # is true, they will be excluded from the ui.
  32. #
  33. # SINCE 0.9.0
  34. git.onlyAccessBareRepositories = false
  35. #
  36. # Groovy Integration
  37. #
  38. # Location of Groovy scripts to use for Pre and Post receive hooks.
  39. # Use forward slashes even on Windows!!
  40. # e.g. c:/groovy
  41. #
  42. # RESTART REQUIRED
  43. # SINCE 0.8.0
  44. groovy.scriptsFolder = groovy
  45. # Scripts to execute on Pre-Receive.
  46. #
  47. # These scripts execute after an incoming push has been parsed and validated
  48. # but BEFORE the changes are applied to the repository. You might reject a
  49. # push in this script based on the repository and branch the push is attempting
  50. # to change.
  51. #
  52. # Script names are case-sensitive on case-sensitive file systems. You may omit
  53. # the traditional ".groovy" from this list if your file extension is ".groovy"
  54. #
  55. # NOTE:
  56. # These scripts are only executed when pushing to *Gitblit*, not to other Git
  57. # tooling you may be using. Also note that these scripts are shared between
  58. # repositories. These are NOT repository-specific scripts! Within the script
  59. # you may customize the control-flow for a specific repository by checking the
  60. # *repository* variable.
  61. #
  62. # SPACE-DELIMITED
  63. # CASE-SENSITIVE
  64. # SINCE 0.8.0
  65. groovy.preReceiveScripts =
  66. # Scripts to execute on Post-Receive.
  67. #
  68. # These scripts execute AFTER an incoming push has been applied to a repository.
  69. # You might trigger a continuous-integration build here or send a notification.
  70. #
  71. # Script names are case-sensitive on case-sensitive file systems. You may omit
  72. # the traditional ".groovy" from this list if your file extension is ".groovy"
  73. #
  74. # NOTE:
  75. # These scripts are only executed when pushing to *Gitblit*, not to other Git
  76. # tooling you may be using. Also note that these scripts are shared between
  77. # repositories. These are NOT repository-specific scripts! Within the script
  78. # you may customize the control-flow for a specific repository by checking the
  79. # *repository* variable.
  80. #
  81. # SPACE-DELIMITED
  82. # CASE-SENSITIVE
  83. # SINCE 0.8.0
  84. groovy.postReceiveScripts =
  85. #
  86. # Authentication Settings
  87. #
  88. # Require authentication to see everything but the admin pages
  89. #
  90. # SINCE 0.5.0
  91. # RESTART REQUIRED
  92. web.authenticateViewPages = false
  93. # Require admin authentication for the admin functions and pages
  94. #
  95. # SINCE 0.5.0
  96. # RESTART REQUIRED
  97. web.authenticateAdminPages = true
  98. # Allow Gitblit to store a cookie in the user's browser for automatic
  99. # authentication. The cookie is generated by the user service.
  100. #
  101. # SINCE 0.5.0
  102. web.allowCookieAuthentication = true
  103. # Either the full path to a user config file (users.conf)
  104. # OR the full path to a simple user properties file (users.properties)
  105. # OR a fully qualified class name that implements the IUserService interface.
  106. # Any custom implementation must have a public default constructor.
  107. #
  108. # SINCE 0.5.0
  109. # RESTART REQUIRED
  110. realm.userService = users.conf
  111. # How to store passwords.
  112. # Valid values are plain, md5, or combined-md5. md5 is the hash of password.
  113. # combined-md5 is the hash of username.toLowerCase()+password.
  114. # Default is md5.
  115. #
  116. # SINCE 0.5.0
  117. realm.passwordStorage = md5
  118. # Minimum valid length for a plain text password.
  119. # Default value is 5. Absolute minimum is 4.
  120. #
  121. # SINCE 0.5.0
  122. realm.minPasswordLength = 5
  123. #
  124. # Gitblit Web Settings
  125. #
  126. # If blank Gitblit is displayed.
  127. #
  128. # SINCE 0.5.0
  129. web.siteName =
  130. # If *web.authenticateAdminPages*=true, users with "admin" role can create
  131. # repositories, create users, and edit repository metadata.
  132. #
  133. # If *web.authenticateAdminPages*=false, any user can execute the aforementioned
  134. # functions.
  135. #
  136. # SINCE 0.5.0
  137. web.allowAdministration = true
  138. # Allows rpc clients to list repositories and possibly manage or administer the
  139. # Gitblit server, if the authenticated account has administrator permissions.
  140. # See *web.enableRpcManagement* and *web.enableRpcAdministration*.
  141. #
  142. # SINCE 0.7.0
  143. web.enableRpcServlet = true
  144. # Allows rpc clients to manage repositories and users of the Gitblit instance,
  145. # if the authenticated account has administrator permissions.
  146. # Requires *web.enableRpcServlet=true*.
  147. #
  148. # SINCE 0.7.0
  149. web.enableRpcManagement = false
  150. # Allows rpc clients to control the server settings and monitor the health of this
  151. # this Gitblit instance, if the authenticated account has administrator permissions.
  152. # Requires *web.enableRpcServlet=true* and *web.enableRpcManagement*.
  153. #
  154. # SINCE 0.7.0
  155. web.enableRpcAdministration = false
  156. # Allow Gravatar images to be displayed in Gitblit pages.
  157. #
  158. # SINCE 0.8.0
  159. web.allowGravatar = true
  160. # Allow dynamic zip downloads.
  161. #
  162. # SINCE 0.5.0
  163. web.allowZipDownloads = true
  164. # Use Clippy (Flash solution) to provide a copy-to-clipboard button.
  165. # If false, a button with a more primitive JavaScript-based prompt box will
  166. # offer a 3-step (click, ctrl+c, enter) copy-to-clipboard alternative.
  167. #
  168. # SINCE 0.8.0
  169. web.allowFlashCopyToClipboard = true
  170. # Default number of entries to include in RSS Syndication links
  171. #
  172. # SINCE 0.5.0
  173. web.syndicationEntries = 25
  174. # Show the size of each repository on the repositories page.
  175. # This requires recursive traversal of each repository folder. This may be
  176. # non-performant on some operating systems and/or filesystems.
  177. #
  178. # SINCE 0.5.2
  179. web.showRepositorySizes = true
  180. # List of custom regex expressions that can be displayed in the Filters menu
  181. # of the Repositories and Activity pages. Keep them very simple because you
  182. # are likely to run into encoding issues if they are too complex.
  183. #
  184. # Use !!! to separate the filters
  185. #
  186. # SINCE 0.8.0
  187. web.customFilters =
  188. # Show federation registrations (without token) and the current pull status
  189. # to non-administrator users.
  190. #
  191. # SINCE 0.6.0
  192. web.showFederationRegistrations = false
  193. # This is the message displayed when *web.authenticateViewPages=true*.
  194. # This can point to a file with Markdown content.
  195. # Specifying "gitblit" uses the internal login message.
  196. #
  197. # SINCE 0.7.0
  198. web.loginMessage = gitblit
  199. # This is the message displayed above the repositories table.
  200. # This can point to a file with Markdown content.
  201. # Specifying "gitblit" uses the internal welcome message.
  202. #
  203. # SINCE 0.5.0
  204. web.repositoriesMessage = gitblit
  205. # Use the client timezone when formatting dates.
  206. # This uses AJAX to determine the browser's timezone and may require more
  207. # server overhead because a Wicket session is created. All Gitblit pages
  208. # attempt to be stateless, if possible.
  209. #
  210. # SINCE 0.5.0
  211. # RESTART REQUIRED
  212. web.useClientTimezone = false
  213. # Time format
  214. # <http://download.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html>
  215. #
  216. # SINCE 0.8.0
  217. web.timeFormat = HH:mm
  218. # Short date format
  219. # <http://download.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html>
  220. #
  221. # SINCE 0.5.0
  222. web.datestampShortFormat = yyyy-MM-dd
  223. # Long date format
  224. #
  225. # SINCE 0.8.0
  226. web.datestampLongFormat = EEEE, MMMM d, yyyy
  227. # Long timestamp format
  228. # <http://download.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html>
  229. #
  230. # SINCE 0.5.0
  231. web.datetimestampLongFormat = EEEE, MMMM d, yyyy HH:mm Z
  232. # Mount URL parameters
  233. # This setting controls if pretty or parameter URLs are used.
  234. # i.e.
  235. # if true:
  236. # http://localhost/commit/myrepo/abcdef
  237. # if false:
  238. # http://localhost/commit/?r=myrepo&h=abcdef
  239. #
  240. # SINCE 0.5.0
  241. # RESTART REQUIRED
  242. web.mountParameters = true
  243. # Some servlet containers (e.g. Tomcat >= 6.0.10) disallow '/' (%2F) encoding
  244. # in URLs as a security precaution for proxies. This setting tells Gitblit
  245. # to preemptively replace '/' with '*' or '!' for url string parameters.
  246. #
  247. # <https://issues.apache.org/jira/browse/WICKET-1303>
  248. # <http://tomcat.apache.org/security-6.html#Fixed_in_Apache_Tomcat_6.0.10>
  249. # Add *-Dorg.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH=true* to your
  250. # *CATALINA_OPTS* or to your JVM launch parameters
  251. #
  252. # SINCE 0.5.2
  253. web.forwardSlashCharacter = /
  254. # Show other URLs on the summary page for accessing your git repositories
  255. # Use spaces to separate urls. {0} is the token for the repository name.
  256. # e.g.
  257. # web.otherUrls = ssh://localhost/git/{0} git://localhost/git/{0}
  258. #
  259. # SINCE 0.5.0
  260. web.otherUrls =
  261. # Choose how to present the repositories list.
  262. # grouped = group nested/subfolder repositories together (no sorting)
  263. # flat = flat list of repositories (sorting allowed)
  264. #
  265. # SINCE 0.5.0
  266. web.repositoryListType = grouped
  267. # If using a grouped repository list and there are repositories at the
  268. # root level of your repositories folder, you may specify the displayed
  269. # group name with this setting. This value is only used for web presentation.
  270. #
  271. # SINCE 0.5.0
  272. web.repositoryRootGroupName = main
  273. # Display the repository swatch color next to the repository name link in the
  274. # repositories list.
  275. #
  276. # SINCE 0.8.0
  277. web.repositoryListSwatches = true
  278. # Choose the diff presentation style: gitblt, gitweb, or plain
  279. #
  280. # SINCE 0.5.0
  281. web.diffStyle = gitblit
  282. # Control if email addresses are shown in web ui
  283. #
  284. # SINCE 0.5.0
  285. web.showEmailAddresses = true
  286. # Shows a combobox in the page links header with commit, committer, and author
  287. # search selection. Default search is commit.
  288. #
  289. # SINCE 0.5.0
  290. web.showSearchTypeSelection = false
  291. # Generates a line graph of repository activity over time on the Summary page.
  292. # This uses the Google Charts API.
  293. #
  294. # SINCE 0.5.0
  295. web.generateActivityGraph = true
  296. # The number of days to show on the activity page.
  297. # Value must exceed 0 else default of 14 is used
  298. #
  299. # SINCE 0.8.0
  300. web.activityDuration = 14
  301. # The number of commits to display on the summary page
  302. # Value must exceed 0 else default of 20 is used
  303. #
  304. # SINCE 0.5.0
  305. web.summaryCommitCount = 16
  306. # The number of tags/branches to display on the summary page.
  307. # -1 = all tags/branches
  308. # 0 = hide tags/branches
  309. # N = N tags/branches
  310. #
  311. # SINCE 0.5.0
  312. web.summaryRefsCount = 5
  313. # The number of items to show on a page before showing the first, prev, next
  314. # pagination links. A default if 50 is used for any invalid value.
  315. #
  316. # SINCE 0.5.0
  317. web.itemsPerPage = 50
  318. # Registered extensions for google-code-prettify
  319. #
  320. # SPACE-DELIMITED
  321. # SINCE 0.5.0
  322. web.prettyPrintExtensions = c cpp cs css htm html java js php pl prefs properties py rb sh sql xml vb
  323. # Registered extensions for markdown transformation
  324. #
  325. # SPACE-DELIMITED
  326. # CASE-SENSITIVE
  327. # SINCE 0.5.0
  328. web.markdownExtensions = md mkd markdown MD MKD
  329. # Image extensions
  330. #
  331. # SPACE-DELIMITED
  332. # SINCE 0.5.0
  333. web.imageExtensions = bmp jpg gif png
  334. # Registered extensions for binary blobs
  335. #
  336. # SPACE-DELIMITED
  337. # SINCE 0.5.0
  338. web.binaryExtensions = jar pdf tar.gz zip
  339. # Aggressive heap management will run the garbage collector on every generated
  340. # page. This slows down page generation a little but improves heap consumption.
  341. #
  342. # SINCE 0.5.0
  343. web.aggressiveHeapManagement = false
  344. # Run the webapp in debug mode
  345. #
  346. # SINCE 0.5.0
  347. # RESTART REQUIRED
  348. web.debugMode = false
  349. # Enable/disable global regex substitutions (i.e. shared across repositories)
  350. #
  351. # SINCE 0.5.0
  352. regex.global = true
  353. # Example global regex substitutions
  354. # Use !!! to separate the search pattern and the replace pattern
  355. # searchpattern!!!replacepattern
  356. # SINCE 0.5.0
  357. regex.global.bug = \\b(Bug:)(\\s*[#]?|-){0,1}(\\d+)\\b!!!<a href="http://somehost/bug/$3">Bug-Id: $3</a>
  358. # SINCE 0.5.0
  359. regex.global.changeid = \\b(Change-Id:\\s*)([A-Za-z0-9]*)\\b!!!<a href="http://somehost/changeid/$2">Change-Id: $2</a>
  360. # Example per-repository regex substitutions overrides global
  361. # SINCE 0.5.0
  362. regex.myrepository.bug = \\b(Bug:)(\\s*[#]?|-){0,1}(\\d+)\\b!!!<a href="http://elsewhere/bug/$3">Bug-Id: $3</a>
  363. #
  364. # Mail Settings
  365. # SINCE 0.6.0
  366. #
  367. # Mail settings are used to notify administrators of received federation proposals
  368. #
  369. # ip or hostname of smtp server
  370. #
  371. # SINCE 0.6.0
  372. mail.server =
  373. # port to use for smtp requests
  374. #
  375. # SINCE 0.6.0
  376. mail.port = 25
  377. # debug the mail executor
  378. #
  379. # SINCE 0.6.0
  380. mail.debug = false
  381. # if your smtp server requires authentication, supply the credentials here
  382. #
  383. # SINCE 0.6.0
  384. mail.username =
  385. # SINCE 0.6.0
  386. mail.password =
  387. # from address for generated emails
  388. #
  389. # SINCE 0.6.0
  390. mail.fromAddress =
  391. # List of email addresses for the Gitblit administrators
  392. #
  393. # SPACE-DELIMITED
  394. # SINCE 0.6.0
  395. mail.adminAddresses =
  396. # List of email addresses for sending push email notifications.
  397. #
  398. # This key currently requires use of the sendemail.groovy hook script.
  399. # If you set sendemail.groovy in *groovy.postReceiveScripts* then email
  400. # notifications for all repositories (regardless of access restrictions!)
  401. # will be sent to these addresses.
  402. #
  403. # SPACE-DELIMITED
  404. # SINCE 0.8.0
  405. mail.mailingLists =
  406. #
  407. # Federation Settings
  408. # SINCE 0.6.0
  409. #
  410. # A Gitblit federation is a way to backup one Gitblit instance to another.
  411. #
  412. # *git.enableGitServlet* must be true to use this feature.
  413. # Your federation name is used for federation status acknowledgments. If it is
  414. # unset, and you elect to send a status acknowledgment, your Gitblit instance
  415. # will be identified by its hostname, if available, else your internal ip address.
  416. # The source Gitblit instance will also append your external IP address to your
  417. # identification to differentiate multiple pulling systems behind a single proxy.
  418. #
  419. # SINCE 0.6.0
  420. federation.name =
  421. # Specify the passphrase of this Gitblit instance.
  422. #
  423. # An unspecified (empty) passphrase disables processing federation requests.
  424. #
  425. # This value can be anything you want: an integer, a sentence, an haiku, etc.
  426. # Keep the value simple, though, to avoid Java properties file encoding issues.
  427. #
  428. # Changing your passphrase will break any registrations you have established with other
  429. # Gitblit instances.
  430. #
  431. # CASE-SENSITIVE
  432. # SINCE 0.6.0
  433. # RESTART REQUIRED *(only to enable or disable federation)*
  434. federation.passphrase =
  435. # Control whether or not this Gitblit instance can receive federation proposals
  436. # from another Gitblit instance. Registering a federated Gitblit is a manual
  437. # process. Proposals help to simplify that process by allowing a remote Gitblit
  438. # instance to send your Gitblit instance the federation pull data.
  439. #
  440. # SINCE 0.6.0
  441. federation.allowProposals = false
  442. # The destination folder for cached federation proposals.
  443. # Use forward slashes even on Windows!!
  444. #
  445. # SINCE 0.6.0
  446. federation.proposalsFolder = proposals
  447. # The default pull frequency if frequency is unspecified on a registration
  448. #
  449. # SINCE 0.6.0
  450. federation.defaultFrequency = 60 mins
  451. # Federation Sets are named groups of repositories. The Federation Sets are
  452. # available for selection in the repository settings page. You can assign a
  453. # repository to one or more sets and then distribute the token for the set.
  454. # This allows you to grant federation pull access to a subset of your available
  455. # repositories. Tokens for federation sets only grant repository pull access.
  456. #
  457. # SPACE-DELIMITED
  458. # CASE-SENSITIVE
  459. # SINCE 0.6.0
  460. federation.sets =
  461. # Federation pull registrations
  462. # Registrations are read once, at startup.
  463. #
  464. # RESTART REQUIRED
  465. #
  466. # frequency:
  467. # The shortest frequency allowed is every 5 minutes
  468. # Decimal frequency values are cast to integers
  469. # Frequency values may be specified in mins, hours, or days
  470. # Values that can not be parsed or are unspecified default to *federation.defaultFrequency*
  471. #
  472. # folder:
  473. # if unspecified, the folder is *git.repositoriesFolder*
  474. # if specified, the folder is relative to *git.repositoriesFolder*
  475. #
  476. # bare:
  477. # if true, each repository will be created as a *bare* repository and will not
  478. # have a working directory.
  479. #
  480. # if false, each repository will be created as a normal repository suitable
  481. # for local work.
  482. #
  483. # mirror:
  484. # if true, each repository HEAD is reset to *origin/master* after each pull.
  485. # The repository will be flagged *isFrozen* after the initial clone.
  486. #
  487. # if false, each repository HEAD will point to the FETCH_HEAD of the initial
  488. # clone from the origin until pushed to or otherwise manipulated.
  489. #
  490. # mergeAccounts:
  491. # if true, remote accounts and their permissions are merged into your
  492. # users.properties file
  493. #
  494. # notifyOnError:
  495. # if true and the mail configuration is properly set, administrators will be
  496. # notified by email of pull failures
  497. #
  498. # include and exclude:
  499. # Space-delimited list of repositories to include or exclude from pull
  500. # may be * wildcard to include or exclude all
  501. # may use fuzzy match (e.g. org.eclipse.*)
  502. #
  503. # (Nearly) Perfect Mirror example
  504. #
  505. #federation.example1.url = https://go.gitblit.com
  506. #federation.example1.token = 6f3b8a24bf970f17289b234284c94f43eb42f0e4
  507. #federation.example1.frequency = 120 mins
  508. #federation.example1.folder =
  509. #federation.example1.bare = true
  510. #federation.example1.mirror = true
  511. #federation.example1.mergeAccounts = true
  512. #
  513. # Server Settings
  514. #
  515. # The temporary folder to decompress the embedded gitblit webapp.
  516. #
  517. # SINCE 0.5.0
  518. # RESTART REQUIRED
  519. server.tempFolder = temp
  520. # Use Jetty NIO connectors. If false, Jetty Socket connectors will be used.
  521. #
  522. # SINCE 0.5.0
  523. # RESTART REQUIRED
  524. server.useNio = true
  525. # Context path for the GO application. You might want to change the context
  526. # path if running Gitblit behind a proxy layer such as mod_proxy.
  527. #
  528. # SINCE 0.7.0
  529. # RESTART REQUIRED
  530. server.contextPath = /
  531. # Standard http port to serve. <= 0 disables this connector.
  532. # On Unix/Linux systems, ports < 1024 require root permissions.
  533. # Recommended value: 80 or 8080
  534. #
  535. # SINCE 0.5.0
  536. # RESTART REQUIRED
  537. server.httpPort = 0
  538. # Secure/SSL https port to serve. <= 0 disables this connector.
  539. # On Unix/Linux systems, ports < 1024 require root permissions.
  540. # Recommended value: 443 or 8443
  541. #
  542. # SINCE 0.5.0
  543. # RESTART REQUIRED
  544. server.httpsPort = 8443
  545. # Port for serving an Apache JServ Protocol (AJP) 1.3 connector for integrating
  546. # Gitblit GO into an Apache HTTP server setup. <= 0 disables this connector.
  547. # Recommended value: 8009
  548. #
  549. # SINCE 0.9.0
  550. # RESTART REQUIRED
  551. server.ajpPort = 0
  552. # Specify the interface for Jetty to bind the standard connector.
  553. # You may specify an ip or an empty value to bind to all interfaces.
  554. # Specifying localhost will result in Gitblit ONLY listening to requests to
  555. # localhost.
  556. #
  557. # SINCE 0.5.0
  558. # RESTART REQUIRED
  559. server.httpBindInterface = localhost
  560. # Specify the interface for Jetty to bind the secure connector.
  561. # You may specify an ip or an empty value to bind to all interfaces.
  562. # Specifying localhost will result in Gitblit ONLY listening to requests to
  563. # localhost.
  564. #
  565. # SINCE 0.5.0
  566. # RESTART REQUIRED
  567. server.httpsBindInterface = localhost
  568. # Specify the interface for Jetty to bind the AJP connector.
  569. # You may specify an ip or an empty value to bind to all interfaces.
  570. # Specifying localhost will result in Gitblit ONLY listening to requests to
  571. # localhost.
  572. #
  573. # SINCE 0.9.0
  574. # RESTART REQUIRED
  575. server.ajpBindInterface = localhost
  576. # Password for SSL keystore.
  577. # Keystore password and certificate password must match.
  578. # This is provided for convenience, its probably more secure to set this value
  579. # using the --storePassword command line parameter.
  580. #
  581. # SINCE 0.5.0
  582. # RESTART REQUIRED
  583. server.storePassword = gitblit
  584. # Port for shutdown monitor to listen on.
  585. #
  586. # SINCE 0.5.0
  587. # RESTART REQUIRED
  588. server.shutdownPort = 8081