You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -583,7 +583,7 @@ There are some settings that should be reviewed and updated as needeed in the se
583
583
| REQUEST_LOGGING_FORMAT | Express request logging format to use. Any of the [Morgan predefined formats](https://github.com/expressjs/morgan#predefined-formats). | tiny |
584
584
| STAC_API_URL | The root endpoint of this API | Inferred from request |
585
585
| ENABLE_TRANSACTIONS_EXTENSION | Boolean specifying if the [Transaction Extension](https://github.com/radiantearth/stac-api-spec/tree/master/ogcapi-features/extensions/transaction) should be activated | false |
586
-
| ENABLE_CONTEXT_EXTENSION | Boolean specifying if the [Context Extension](https://github.com/stac-api-extensions/context) should be activated | false |
586
+
| ENABLE_CONTEXT_EXTENSION | Boolean specifying if the [Context Extension](https://github.com/stac-api-extensions/context) should be activated | false |
587
587
| STAC_API_ROOTPATH | The path to append to URLs if this is not deployed at the server root. For example, if the server is deployed without a custom domain name, it will have the stage name (e.g., dev) in the path. | "" |
588
588
| PRE_HOOK | The name of a Lambda function to be called as the pre-hook. | none |
589
589
| POST_HOOK | The name of a Lambda function to be called as the post-hook. | none |
@@ -598,6 +598,7 @@ There are some settings that should be reviewed and updated as needeed in the se
598
598
| CORS_CREDENTIALS | Configure whether or not to send the `Access-Control-Allow-Credentials` CORS header. Header will be sent if set to `true`. | none |
599
599
| CORS_METHODS | Configure whether or not to send the `Access-Control-Allow-Methods` CORS header. Expects a comma-delimited string, e.g., `GET,PUT,POST`. | `GET,HEAD,PUT,PATCH,POST,DELETE` |
600
600
| CORS_HEADERS | Configure whether or not to send the `Access-Control-Allow-Headers` CORS header. Expects a comma-delimited string, e.g., `Content-Type,Authorization`. If not specified, defaults to reflecting the headers specified in the request’s `Access-Control-Request-Headers` header. | none |
601
+
| ENABLE_COLLECTIONS_AUTHX | Enables support for hidden `_collections` query parameter / field when set to `true`. | none |
601
602
602
603
Additionally, the credential for OpenSearch must be configured, as decribed in the
603
604
section [Populating and accessing credentials](#populating-and-accessing-credentials).
@@ -1110,6 +1111,8 @@ parameter named (for GET requests) or body JSON field (for POST requests) named
1110
1111
to filter the collections a user has access to. This parameter/field will be excluded
1111
1112
from pagination links, so it does not need to be removed on egress.
1112
1113
1114
+
This feature must be enabled with the `ENABLE_COLLECTIONS_AUTHX` configuration.
0 commit comments