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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#
# This is an annotated b.site file with all the
# options listed. The uncommented values are the defaults.
#
###############################################
## URLS ##
# the url root of the website
# (if you don't specify, bamboo makes its best guess)
# siteroot = /mysite
# siteroot = /
# the url where the bamboo libraries are browseable
liburl = '/bamboo'
###############################################
## APPEARANCE ##
# prefix every title with this text
title-prefix = ''
# the name of the site
sitename = 'Untitled Site'
# what template to use for the site appearance
decorator = 'default'
###############################################
## SECURITY ##
## what user backend to use
# userbackend = static, admin:mypasswd
# userbackend = file, .bamboo/b.users
# userbackend = sqlite, .bamboo/b.users.sqlite
userbackend = none
## page types allowed
# allowed-types = txt html php mod
allowed-types = txt
## permissions
# access-edit = admin
access-view = anonymous
access-edit = anonymous
###############################################
## advanced options ##
## what to use for page storage. only 'folder' is supported.
pagebackend = folder
## what to use for the index. only 'sqlite' is supported.
indexbackend = sqlite, .bamboo/b.index.sqlite
## unused
cachedir = /tmp/bamboocache
|