Part 3 Fixing Mixed Content Warning on Digital Ocean Droplet

Опубликовано: 19 Февраль 2026
на канале: Elisha Kramer
194
2

$100 of free credit on Digital Ocean:

https://m.do.co/c/1a2af257efba

Make sure that you define the WP_SITEURL and WP_HOME at wp-config.php

define('WP_HOME','https://yourdomain.com');
define('WP_SITEURL','https://yourdomain.com');
And add this condition to check if the https at wp-config.php

if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && 'https' == $_SERVER['HTTP_X_FORWARDED_PROTO'] ) {
$_SERVER['HTTPS'] = 'on';
}

https://stackoverflow.com/questions/2...