]> git.llucax.com Git - software/blitiri.git/blobdiff - config.py.sample
Honour umask when creating the comments directory
[software/blitiri.git] / config.py.sample
index f145a3e3d0af1d1af1bd464ac63faf60ff4cafac..5a07da77e3885266be73acb2ad59f884a1083b5c 100644 (file)
@@ -10,6 +10,9 @@
 # Directory where entries are stored
 data_path = "/tmp/blog/data"
 
 # Directory where entries are stored
 data_path = "/tmp/blog/data"
 
+# Are comments allowed? (if False, comments_path option is not used)
+enable_comments = False
+
 # Directory where comments are stored (must be writeable by the web server)
 comments_path = "/tmp/blog/comments"
 
 # Directory where comments are stored (must be writeable by the web server)
 comments_path = "/tmp/blog/comments"
 
@@ -17,6 +20,12 @@ comments_path = "/tmp/blog/comments"
 # default templates. If they're not found, the built-in ones will be used.
 templates_path = "/tmp/blog/templates"
 
 # default templates. If they're not found, the built-in ones will be used.
 templates_path = "/tmp/blog/templates"
 
+# Path where the cache is stored (must be writeable by the web server);
+# set to None to disable. When enabled, you must take care of cleaning it up
+# every once in a while.
+#cache_path = "/tmp/blog/cache"
+cache_path = None
+
 # URL to the blog, including the name. Can be a full URL or just the path.
 blog_url = "/blog/blitiri.cgi"
 
 # URL to the blog, including the name. Can be a full URL or just the path.
 blog_url = "/blog/blitiri.cgi"
 
@@ -33,4 +42,11 @@ author = "Hartmut Kegan"
 # Article encoding
 encoding = "utf8"
 
 # Article encoding
 encoding = "utf8"
 
+# Captcha method to use. At the moment only "title" is supported, but if you
+# are keen with Python you can provide your own implementation, see
+# blitiri.cgi for details.
+captcha_method = "title"
+
+# How many articles to show in the index
+index_articles = 10