aboutsummaryrefslogtreecommitdiff
path: root/config.yaml.example
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2024-01-31 06:11:00 +0300
committerEvgeny Zinoviev <me@ch1p.io>2024-01-31 20:45:40 +0300
commitc0dc531ebefd8912819f3b6c8bda1fed3c7e750c (patch)
tree2c75aa9df182260aef09faf4befd81a4c2b9c5e2 /config.yaml.example
parent48d688cdf7f9eae1bf11b8a6f0e5b98687c604cb (diff)
make it simple, but not simpler
Diffstat (limited to 'config.yaml.example')
-rw-r--r--config.yaml.example35
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