From d6c47006b2df864770ef21a806cce2680feff444 Mon Sep 17 00:00:00 2001 From: Peter Somogyvari Date: Mon, 17 Jul 2017 08:18:51 -0700 Subject: [PATCH] fix(doc): server-proxy-uri -- URI, not URL (#914) There was this typo in the ./docker/postgrest.conf example file, hoping to spare others from having to chase this straight back to the source code. --- docker/postgrest.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/postgrest.conf b/docker/postgrest.conf index 03db461d9..094484745 100644 --- a/docker/postgrest.conf +++ b/docker/postgrest.conf @@ -6,7 +6,7 @@ db-pool = "$(PGRST_DB_POOL)" server-host = "$(PGRST_SERVER_HOST)" server-port = "$(PGRST_SERVER_PORT)" -server-proxy-url = "$(PGRST_SERVER_PROXY_URL)" +server-proxy-uri = "$(PGRST_SERVER_PROXY_URI)" jwt-secret = "$(PGRST_JWT_SECRET)" secret-is-base64 = "$(PGRST_SECRET_IS_BASE64)"