diff --git a/search_api_override.module b/search_api_override.module
index 8b170e984..cd28bc0ed 100644
--- a/search_api_override.module
+++ b/search_api_override.module
@@ -102,6 +102,7 @@ function search_api_override_search_api_server_load($servers) {
  * @param array $override
  *   The override configuration for the given server, it may contain those keys:
  *   - name: Administrative title for the server
+ *   - enabled: Whether the server is enabled or not.
  *   - description: Administrative description for the server
  *   - options: Server specific options
  */
@@ -114,6 +115,9 @@ function _search_api_override_apply_single_override($server, $override) {
   if (isset($override['class'])) {
     $server->class = $override['class'];
   }
+  if (isset($override['enabled'])) {
+    $server->enabled = $override['enabled'];
+  }
   // We can do this for the description too.
   if (isset($override['description'])) {
     $server->description = $override['description'];
