Skip to content

Commit 5d12145

Browse files
committed
Remove response header from table
1 parent 6f950f6 commit 5d12145

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

content/en/docs/refguide/runtime/custom-settings/configure-cors.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ In addition to the runtime settings above, you need to set the following custom
3232
| `Access-Control-Allow-Headers` | `Content-Type, x-csrf-token` | Specifies which HTTP headers can be used in the actual request. Expand this list if your application uses additional custom headers. |
3333
| `Access-Control-Allow-Methods` | `POST, GET, OPTIONS` | Specifies the HTTP methods allowed when accessing the resource. Expand this list if your application uses additional methods (for example, `PUT` or `DELETE`). |
3434
| `Access-Control-Allow-Origin` | Your client domain (for example, `https://my-app.example.com`) | The origin from which the client application is served. This must match the exact domain, including the scheme and port. |
35-
| `Access-Control-Request-Method` | `*` | Indicates which methods are supported by the resource in response to a preflight request. |
3635

3736
{{% alert color="info" %}}
3837
If you change these settings, you need to restart your app to apply the changes.
@@ -51,7 +50,6 @@ mxruntime:
5150
"Access-Control-Allow-Headers": "Content-Type, x-csrf-token"
5251
"Access-Control-Allow-Methods": "POST, GET, OPTIONS"
5352
"Access-Control-Allow-Origin": YOUR_ORIGIN
54-
"Access-Control-Request-Method": "*"
5553
```
5654
5755
## Troubleshooting

0 commit comments

Comments
 (0)