diff --git a/core/modules/filter/filter.module b/core/modules/filter/filter.module
index 261225875c610efa3112153e19129f70a1214676..ebb1dbbff74c0dc8153ecf50cf9cd6c39dc74dd6 100644
--- a/core/modules/filter/filter.module
+++ b/core/modules/filter/filter.module
@@ -1514,7 +1514,8 @@ function _filter_html_image_secure_process($text) {
     $src = $image->getAttribute('src');
     // Remove absolute URLs pointing to the local domain to prevent mixed
     // content errors.
-    $image->setAttribute('src', preg_replace('|^https?://' . $_SERVER['HTTP_HOST'] . '|', '', $src));
+    $request = Drupal::request();
+    $image->setAttribute('src', preg_replace('|^https?://' . $request->getHost() . '|', '', $src));
 
     // Verify that $src starts with $base_path.
     // This also ensures that external images cannot be referenced.