~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead.conf.example

  • Committer: Max Kanat-Alexander
  • Date: 2010-11-12 00:09:49 UTC
  • Revision ID: mkanat@bugzilla.org-20101112000949-qhuz3vydzcvih8px
loggerhead.trace was missing an import of logging.handlers, which caused
start-loggerhead to die if a log.roll config setting was set.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
# use this if you're mapping loggerhead within apache via proxy
6
6
#server.webpath = 'http://example.com/branches'
7
7
 
 
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'
 
10
 
8
11
# where's bzrlib?
9
12
# (you only need this if you don't install bzr.)
10
13
#bzrpath = '/Users/robey/code/bzr/bzr'
12
15
# if you want a special title on the front page, set it here:
13
16
title = 'branches in loggerhead'
14
17
 
 
18
# the access and debug logs can be set up to roll 'daily', 'weekly', or 'never':
 
19
log.roll = 'weekly'
 
20
 
15
21
# group branches by project:
16
22
[bazaar]
17
23
 
18
24
    # name of this project
19
25
    name = 'bazaar'
20
 
    
 
26
 
21
27
    # for the top browsing page, you can include a description, in raw HTML.
22
28
    #description = 'Bazaar is a <i>revision control system</i>.'
23
29
 
24
 
    # should we cache revisions and build a text index?  (HIGHLY recommended)
25
 
    # this will be a folder containing a few files.  if the folder doesn't
 
30
    # should we cache files changed? (recommended for large trees)
 
31
    # this will be a folder containing one file.  if the folder doesn't
26
32
    # exist, it'll be created.
27
33
    #
28
34
    # all branches in this project will share the same cache, which is usually
57
63
[paramiko]
58
64
    name = 'paramiko'
59
65
    cachepath = '/Users/robey/code/paramiko/.bzr/loggerhead-files'
60
 
    
 
66
 
61
67
    # if an auto_publish_folder is given, any bazaar branches discovered in
62
68
    # that folder will be published.  using each branch's 'branch.conf' to
63
69
    # provide optional descriptions and public urls is a nice way to avoid
64
70
    # having to do much configuration here.
65
71
    auto_publish_folder = '/Users/robey/code/paramiko'
66
 
    
 
72
 
67
73
    # if all of the branches under an auto_publish_folder are exported to
68
74
    # the same (base) public url, you can specify that url prefix here, and
69
75
    # each discovered branch's public url will be generated.