From fdf85773e76705b8fd33e6b287ad1bf441952c9f Mon Sep 17 00:00:00 2001 From: Laurence Isla Date: Wed, 14 Jun 2023 14:25:54 -0500 Subject: [PATCH] Fix jwt_secret in example --- docs/references/configuration.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/references/configuration.rst b/docs/references/configuration.rst index 50e71c17d..a0683c774 100644 --- a/docs/references/configuration.rst +++ b/docs/references/configuration.rst @@ -88,7 +88,7 @@ Using a :ref:`pre-config ` function, you can configure the server returns void as $$ select set_config('pgrst.db_schemas', 'schema1, schema2', true) - , set_config('pgrst.db_jwt_secret', 'REALLYREALLYREALLYREALLYVERYSAFE', true); + , set_config('pgrst.jwt_secret', 'REALLYREALLYREALLYREALLYVERYSAFE', true); $$ language sql; Note that underscores(``_``) need to be used instead of dashes(``-``) for the in-database config parameters. See the full list of in-database names on :ref:`config_full_list`.