diff options
Diffstat (limited to 'config.yaml.example')
-rw-r--r-- | config.yaml.example | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/config.yaml.example b/config.yaml.example new file mode 100644 index 0000000..49f88d7 --- /dev/null +++ b/config.yaml.example @@ -0,0 +1,35 @@ +domain: example.org +cookie_host: .example.org +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 + + +umask: 0002 +group: www-data +files_mode: 0664 +dirs_mode: 0775 + +csrf_token: "123" +password_salt: "456" + +uploads_dir: /home/user/files.example.org +uploads_host: files.example.org + +# deploy config +git_repo: git@github.com:example/example_org.git + +# runtime variables +is_dev: false
\ No newline at end of file |