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
_String_ _Array_. Additional CORS allowed origins to include in DoltLab's Envoy-generated CORS policies. _Optional_.
1069
+
1070
+
These origins are **added** to the defaults for the configured DoltLab host (`http://<host>` and `https://<host>`), and apply to DoltLab HTTP APIs such as `/api/v1alpha1`.
1071
+
1072
+
To allow **all** origins, set this list to include `"*"` or `".*"`. When the wildcard is present, the installer enables an allow-all CORS policy and ignores any other entries.
1073
+
1074
+
Each entry must be a full origin (scheme + host, optional port) and **must not** include a path, query, or fragment. Trailing `/` is ignored.
1075
+
1076
+
```yaml
1077
+
# example installer_config.yaml
1078
+
services:
1079
+
doltlabenvoy:
1080
+
cors_allowed_origins:
1081
+
- "*" # allow all origins
1082
+
- "https://example.com"
1083
+
- "http://localhost:3000"
1084
+
```
1085
+
1086
+
Command line equivalent [cors-origin](./cli.md#cors-origin).
1087
+
1060
1088
## default_user
1061
1089
1062
1090
_Dictionary_. Configuration options for DoltLab's default user. _Required_.
Copy file name to clipboardExpand all lines: packages/doltlab/content/reference/release-notes/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ DoltLab is currently closed-source, but the [dolthub/doltlab-issues](https://git
7
7
The following is a list of release notes for available DoltLab versions >= `v2.0.0`. DoltLab and DoltHub share the same source code. For this reason, we list fixes related to DoltLab issues in the `DoltLab Features/Bug Fixes` section of the release notes, and fixes corresponding to DoltHub issuers in the `DoltLab Features/Bug Fixes` section.
Download at [https://doltlab-releases.s3.us-east-1.amazonaws.com/linux/amd64/doltlab-v2.5.2.zip](https://doltlab-releases.s3.us-east-1.amazonaws.com/linux/amd64/doltlab-v2.5.2.zip)
6
+
7
+
Service images can be downloaded at [https://doltlab-releases.s3.us-east-1.amazonaws.com/linux/amd64/doltlab-service-images-v2.5.2.zip](https://doltlab-releases.s3.us-east-1.amazonaws.com/linux/amd64/doltlab-service-images-v2.5.2.zip)
8
+
9
+
## DoltLab Features/Bug Fixes
10
+
* Add CORS Policy to `doltlabui` to allow DoltLab API access from web apps.
11
+
* Support custom CORS origins in `installer_config.yaml`.
0 commit comments