From 472aa87838bda49c259f5664ea025b92166ae1f2 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Tue, 6 Mar 2018 17:56:47 +0100 Subject: [PATCH] Added documentation to manually enable required extensions --- docs/installation/external_dependencies.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/installation/external_dependencies.rst b/docs/installation/external_dependencies.rst index fa0908545..6641bef00 100644 --- a/docs/installation/external_dependencies.rst +++ b/docs/installation/external_dependencies.rst @@ -43,6 +43,15 @@ you should now be able to open a postgresql shell: sudo -u funkwhale -H psql +Unless you give a superuser access to the database user, you should also +enable some extensions on your database server, as those are required +for funkwhale to work properly: + +.. code-block:: shell + + sudo -u postgres psql -c 'CREATE EXTENSION "unaccent";'' + + Cache setup (Redis) -------------------