Skip to main content
summaryrefslogtreecommitdiffstats
blob: 541b10e228790ce1dc33c712a29956a8b8fe3afc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[gerrit]
        basePath = <%= @envbase %>/git
<% if @envhost == "precise32" %>
        canonicalWebUrl = http://localhost:2080/<%= @envid %>
<% else %>
        canonicalWebUrl = http://<%= @envhost %>/<%= @envid %>
<% end %>
[database]
        type = H2
        database = db/ReviewDB
[auth]
        type = <%= @authtype %>
[sendemail]
        smtpServer = localhost
[container]
        #user = tools
        javaHome = /usr/lib/jvm/java-6-openjdk-i386/jre
        heapLimit = 128m
[sshd]
        listenAddress = *:<%= @sshport %>
[httpd]
        listenUrl = proxy-http://*:<%= @port %>/<%= @envid %>
[cache]
        directory = cache

[commentlink "changeid"]
  match = (I[0-9a-f]{8,40})
  link = "#q,$1,n,z"

[commentlink "bugzilla"]
  match = (bug\\s+)(\\d+)
  link = http://bugs.mylyn.org/show_bug.cgi?id=$2

[commentlink "tracker"]
  match = ([Tt]ask:\\s+)(\\d+)
  html = $1<a href=\"http://tracker.mylyn.org/$2\">$2</a>

[mimetype "image/png"]
  safe = true

[mimetype "image/gif"]
  safe = false

Back to the top