diff --git a/docs/deploying_clearml/clearml_server_config.md b/docs/deploying_clearml/clearml_server_config.md index ba43b76a..48df9ed0 100644 --- a/docs/deploying_clearml/clearml_server_config.md +++ b/docs/deploying_clearml/clearml_server_config.md @@ -326,6 +326,23 @@ Modify the following settings for the watchdog: 1. Restart ClearML Server. +### CORS Configuration + +To enable CORS on your ClearML File Server, edit the ClearML Server's `/opt/clearml/config/apiserver.conf` file's `cors` +section. For example: + +``` +cors { + origins: "*" + + # Not supported when origins is "*" + supports_credentials: true +} +``` + +See the [Flask-Cors documentation](https://flask-cors.corydolphin.com/en/latest/api.html) for detailed initialization +options. + ### Custom UI Context Menu Actions :::note Enterprise Feature