2
# use this to change the server's port
3
#server.socket_port = 8080
5
# use this if you're mapping loggerhead within apache via proxy
6
#server.webpath = 'http://example.com/branches'
8
# use this if you want loggerhead to listen to another interface than 127.0.0.1
9
# server.socket_host = 'your_hostname_or_ip'
3
12
# (you only need this if you don't install bzr.)
4
bzrpath='/Users/robey/code/bzr/bzr'
13
#bzrpath = '/Users/robey/code/bzr/bzr'
6
15
# if you want a special title on the front page, set it here:
7
title='branches in loggerhead'
16
title = 'branches in loggerhead'
18
# the access and debug logs can be set up to roll 'daily', 'weekly', or 'never':
9
21
# group branches by project:
12
24
# name of this project
27
# for the top browsing page, you can include a description, in raw HTML.
28
#description = 'Bazaar is a <i>revision control system</i>.'
30
# should we cache revisions and build a text index? (HIGHLY recommended)
31
# this will be a folder containing a few files. if the folder doesn't
32
# exist, it'll be created.
34
# all branches in this project will share the same cache, which is usually
35
# what you want if they share a repository. if not, you can also specify
37
cachepath = '/Users/robey/code/bzr/.bzr/loggerhead-files'
15
39
# each branch is in a sub-folder of the website, and the config
16
40
# key describes that folder name:
19
43
# where is the bazaar branch located?
20
folder='/Users/robey/code/bzr/bzr.dev'
44
folder = '/Users/robey/code/bzr/bzr.dev'
22
46
# (optional) is there a friendier name for the branch that i should
23
47
# use on the web pages?
24
#branch_name='bazaar-dev'
48
# you can also define this using the branch's nickname.
49
#branch_name = 'bazaar-dev'
26
51
# (optional) short description for the top-level page
27
description="bazaar vcs development branch"
52
# you can also define this using the "description" config key in the
53
# branch's 'branch.conf'.
54
description = "bazaar vcs development branch"
29
56
# (optional) public branch url for the top-level page
30
url='http://bazaar-ng.org/bzr/bzr.dev'
32
# should we cache revisions? (HIGHLY recommended) where?
33
# this will be a folder containing a couple of files. if the folder
34
# doesn't already exist, we'll create it.
35
cachepath='/Users/robey/code/bzr/bzr.dev/.bzr/loggerhead-cache'
57
# you can also define this using the "public_url" config key in the
58
# branch's 'branch.conf'.
59
url = 'http://bazaar-ng.org/bzr/bzr.dev'
62
# here's an example of an auto-published folder:
65
cachepath = '/Users/robey/code/paramiko/.bzr/loggerhead-files'
67
# if an auto_publish_folder is given, any bazaar branches discovered in
68
# that folder will be published. using each branch's 'branch.conf' to
69
# provide optional descriptions and public urls is a nice way to avoid
70
# having to do much configuration here.
71
auto_publish_folder = '/Users/robey/code/paramiko'
73
# if all of the branches under an auto_publish_folder are exported to
74
# the same (base) public url, you can specify that url prefix here, and
75
# each discovered branch's public url will be generated.
76
url_prefix = 'http://www.example.com/code/paramiko'