summaryrefslogtreecommitdiffstats
path: root/config-default.yml
diff options
context:
space:
mode:
authornico <nico@magicbroccoli.de>2020-04-19 13:11:17 +0200
committernico <nico@magicbroccoli.de>2020-04-19 13:11:17 +0200
commitc8da6d2f2d530ea51ec0dee937d1309fb57d824f (patch)
treecc1943c34da559ee916a78adeef0d09b0f137a23 /config-default.yml
parent36cf666a0c8ea32c702338e2931dc109859269a7 (diff)
add missing requirements and config parameters
+ add missing config parameters in the config template + add redis requirement * fixed mistake in the uwsgi template
Diffstat (limited to 'config-default.yml')
-rw-r--r--config-default.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/config-default.yml b/config-default.yml
index 9467e64..56b0642 100644
--- a/config-default.yml
+++ b/config-default.yml
@@ -1,11 +1,17 @@
{
+ # flask settings
"secret-key": "super-secret-password",
"flask-secret": "different-super-secret-password",
-
"cookie_domain": ".example.de/joplin",
"cookie_path": "/joplin/",
+ # joplin
"htpasswd_file": "/path/to/joplin/htauth/file",
"joplin_webdav_dir": "/var/www/webdav/joplin",
- "invite_code": "secret invite code"
+ "invite_code": "secret invite code",
+
+ # cache
+ 'cache_type': 'redis',
+ 'cache_key_prefix': 'FLASK:',
+ 'cache_redis_url': 'redis://localhost:6379/0'
} \ No newline at end of file