From f6c1ff810e92321f2cd522058d5c6fd74cb64226 Mon Sep 17 00:00:00 2001 From: Dominik Date: Fri, 25 May 2018 15:02:25 +0200 Subject: [PATCH] Add role-claim-key to docker postgrest.conf With #1091, the role-claim-key was added, but it is not configurable in docker containers as the template config doesn't allow it. This patch adds the necessary line to the postgrest.conf of the docker container. --- docker/postgrest.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/postgrest.conf b/docker/postgrest.conf index 9cf359040..ceb73951a 100644 --- a/docker/postgrest.conf +++ b/docker/postgrest.conf @@ -10,6 +10,7 @@ server-proxy-uri = "$(PGRST_SERVER_PROXY_URI)" jwt-secret = "$(PGRST_JWT_SECRET)" secret-is-base64 = "$(PGRST_SECRET_IS_BASE64)" jwt-aud = "$(PGRST_JWT_AUD)" +role-claim-key = "$(PGRST_ROLE_CLAIM_KEY)" max-rows = "$(PGRST_MAX_ROWS)" pre-request = "$(PGRST_PRE_REQUEST)"