Fix example yml config file.
[blog.pm.git] / blog.yml.example
blob58d1b815b21e0b193711b660b6f0b71d6278a41a
1 ---
2 name: Blog
3 author: vti
4 copyright: '2008 GPL'
5 title_en: 'My Cool Blog'
6 description: 'About me'
8 default_language: 'en'
9 languages:
10     ru: 'Русский'
11     en: 'English'
13 DB:
14     driver  : 'sqlite'
15     database: __path_to(blog.db)__
17 authentication:
18     default_realm: 'admins'
19     realms:
20         admins:
21             credential:
22                 class: 'Password'
23                 password_field: 'password'
24                 password_type: 'clear'
25             store:
26                 class: 'Minimal'
27                 users:
28                     vti:
29                         password: 'password'
30         openid:
31             credential:
32                 class: OpenID
33                 store:
34                     class: OpenID
35             ua_args:
36                 whitelisted_hosts:
37                     - 127.0.0.1
38                     - localhost
40 Model::Gravatar:
41     default: 'http://localhost:3000/static/default/images/gravatar.png'
42     size: 32
44 View::TT:
45   ENCODING: 'UTF-8'