Change server-proxy-uri 2 openapi-server-proxy-uri

This commit is contained in:
steve-chavez
2020-02-15 13:56:38 -05:00
committed by Steve Chavez
parent 878752faee
commit c4005ad8f2
2 changed files with 29 additions and 27 deletions
+7 -7
View File
@@ -30,9 +30,9 @@ The user specified in the db-uri is also known as the authenticator role. For mo
Here is the full list of configuration parameters. Here is the full list of configuration parameters.
======================= ====== ========= ======== ======================== ====== ========= ========
Name Type Default Required Name Type Default Required
======================= ====== ========= ======== ======================== ====== ========= ========
db-uri String Y db-uri String Y
db-schema String Y db-schema String Y
db-anon-role String Y db-anon-role String Y
@@ -43,7 +43,7 @@ server-host String !4
server-port Int 3000 server-port Int 3000
server-unix-socket String server-unix-socket String
server-unix-socket-mode String 660 server-unix-socket-mode String 660
server-proxy-uri String openapi-server-proxy-uri String
jwt-secret String jwt-secret String
jwt-aud String jwt-aud String
secret-is-base64 Bool False secret-is-base64 Bool False
@@ -52,7 +52,7 @@ pre-request String
app.settings.* String app.settings.* String
role-claim-key String .role role-claim-key String .role
raw-media-types String raw-media-types String
======================= ====== ========= ======== ======================== ====== ========= ========
.. _db-uri: .. _db-uri:
@@ -154,10 +154,10 @@ server-unix-socket-mode
server-unix-socket-mode = "660" server-unix-socket-mode = "660"
.. _server-proxy-uri: .. _openapi-server-proxy-uri:
server-proxy-uri openapi-server-proxy-uri
---------------- ------------------------
Overrides the base URL used within the OpenAPI self-documentation hosted at the API root path. Use a complete URI syntax :code:`scheme:[//[user:password@]host[:port]][/]path[?query][#fragment]`. Ex. :code:`https://postgrest.com` Overrides the base URL used within the OpenAPI self-documentation hosted at the API root path. Use a complete URI syntax :code:`scheme:[//[user:password@]host[:port]][/]path[?query][#fragment]`. Ex. :code:`https://postgrest.com`
+2
View File
@@ -24,3 +24,5 @@ Changed
------- -------
* :ref:`bulk_call` should now be done by specifying a ``Prefer: params=multiple-objects`` header. * :ref:`bulk_call` should now be done by specifying a ``Prefer: params=multiple-objects`` header.
* ``server-proxy-uri`` config option has been renamed to :ref:`openapi-server-proxy-uri`.