]> git.llucax.com Git - personal/website.git/blob - source/blog/config.py
Import personal website to git
[personal/website.git] / source / blog / config.py
1 #coding: utf8
2
3 # This is the sample configuration file for a blitiri blog engine.
4 # If you omit a variable, the default will be used.
5 #
6 # If you prefer, you can set the values directly inside blitiri.cgi and not
7 # have a configuration file.
8
9 # Make new files with group permissions
10 import os
11 os.umask(0002)
12
13 # Directory where entries are stored
14 data_path = "posts"
15
16 # Are comments allowed? (if False, comments_path option is not used)
17 enable_comments = True
18
19 # Directory where comments are stored (must be writeable by the web server)
20 comments_path = "comments"
21
22 # Path where templates are stored. Use an empty string for the built-in
23 # default templates. If they're not found, the built-in ones will be used.
24 templates_path = "."
25
26 # Path where the cache is stored (must be writeable by the web server);
27 # set to None to disable. When enabled, you must take care of cleaning it up
28 # every once in a while.
29 cache_path = "/srv/llucax/cache/blog"
30
31 # URL to the blog, including the name. Can be a full URL or just the path.
32 blog_url = "/blog/blog"
33
34 # Style sheet (CSS) URL. Can be relative or absolute. To use the built-in
35 # default, set it to blog_url + "/style".
36 #css_url = blog_url + "/style"
37 css_url = '/blog/style.css'
38
39 # Blog title
40 title = "Luca's meaningless thoughts"
41
42 # Default author
43 author = "Leandro Lucarella"
44
45 # Article encoding
46 encoding = "utf8"
47
48 # Captcha method to use. At the moment only "title" is supported, but if you
49 # are keen with Python you can provide your own implementation, see
50 # blitiri.cgi for details.
51 captcha_method = "title"
52
53 # How many articles to show in the index
54 index_articles = 15
55