File: blog.ini

package info (click to toggle)
pyblosxom 1.4.3-1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 648 kB
  • ctags: 424
  • sloc: python: 2,772; sh: 27; makefile: 15
file content (30 lines) | stat: -rw-r--r-- 848 bytes parent folder | download
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
#
# PyBlosxom blog.ini file for Paste.
#

[DEFAULT]
# Set this to false for production environments
debug = True

[server:main]
# These next three lines define how Paste will serve this blog.
# Refer to the Paste documentation for more details:
# http://pythonpaste.org/deploy/
use = egg:Paste#http
host = 0.0.0.0
port = 5000

[app:main]
paste.app_factory = Pyblosxom.pyblosxom:pyblosxom_app_factory

# This is the directory your config.py file is in.
configpydir = /path/to/config.py/directory

# PyBlosxom config properties can be set after this point if you
# like.  Or you can set them in the config.py file.  Setting things
# here overrides what's in your config.py file.  This makes it easier
# to have a development and a production blog--you just have a .ini
# file for each one.

# Example of setting a property:
# blog_title = Joe's Blog