Browse Source

moved to TASKS.md

dominik 1 year ago
parent
commit
2b74d2633a
1 changed files with 12 additions and 0 deletions
  1. 12 0
      TASKS.md

+ 12 - 0
TASKS.md

@@ -31,3 +31,15 @@ deferred
 wishlist
 --------------------------
 - mam in sqlite with migration path for existing msgs
+Monitor if file permissions changed and change them back
+
+ssl update ideas
+--------------------------
+```
+docker run -it --rm -d \
+-v /opt/docker/proxy/data/certs/im.s-up.net/:/home/ejabberd/ssl/ \
+--name ejabberd-perms alpine \
+sh -c 'apk add --no-cache inotify-tools
+while true; do inotifywait /home/ejabberd/ssl/key.pem  --event attrib \
+&& chmod -R o+r,o+X /home/ejabberd/ssl/; done'
+```