diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2024-01-31 20:49:59 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2024-01-31 20:49:59 +0300 |
commit | 696f4baeedab7710fd6aad474b5fe34f98093ca8 (patch) | |
tree | e86e25baaff14b8180b6fdb7b26c086ba2c1fb0d | |
parent | c0dc531ebefd8912819f3b6c8bda1fed3c7e750c (diff) |
fix config example
-rw-r--r-- | config.yaml.example | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/config.yaml.example b/config.yaml.example index 49f88d7..ef707ef 100644 --- a/config.yaml.example +++ b/config.yaml.example @@ -5,16 +5,14 @@ admin_email: admin@example.org dev_domains: - dev -db: - type: 'mysql' - mysql: - host: "127.0.0.1" - user: "user" - password: "password" - database: "dbname" - # misc - log: false - log_stat: false +mysql: + host: "127.0.0.1" + user: "user" + password: "password" + database: "dbname" + # misc + log: false + log_stat: false umask: 0002 |