diff options
Diffstat (limited to 'TODOs.org')
-rw-r--r-- | TODOs.org | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -138,3 +138,11 @@ magnitute harder for the attacker. ** Enable 2FA for Nextcloud? Do XMPP support that too? * Scrath +initialScript = pkgs.writeText "synapse-init.sql" '' + CREATE ROLE "matrix-synapse" WITH LOGIN PASSWORD '${synapseDBPassword}'; + + CREATE DATABASE "matrix-synapse" WITH OWNER "matrix-synapse" + TEMPLATE template0 + LC_COLLATE = "C" + LC_CTYPE = "C"; +''; |