X-Git-Url: https://git.llucax.com/software/blitiri.git/blobdiff_plain/a952c0e94cd764cf1d1cb177c46ebc0cf8c2785d..6c78e368dbece8a3e6fa1af06d9efce0f487a9f2:/config.py.sample?ds=sidebyside diff --git a/config.py.sample b/config.py.sample index 512e1a4..1f2c4ea 100644 --- a/config.py.sample +++ b/config.py.sample @@ -1,3 +1,4 @@ +#coding: utf8 # This is the sample configuration file for a blitiri blog engine. # If you omit a variable, the default will be used. @@ -9,6 +10,12 @@ # 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" + # Path where templates are stored. Use an empty string for the built-in # default templates. If they're not found, the built-in ones will be used. templates_path = "/tmp/blog/templates"