Skip to content

Instantly share code, notes, and snippets.

@pkosciak
Last active November 16, 2023 20:54
Show Gist options
  • Select an option

  • Save pkosciak/e5434feab3d5e1282f7ff11bd6456d35 to your computer and use it in GitHub Desktop.

Select an option

Save pkosciak/e5434feab3d5e1282f7ff11bd6456d35 to your computer and use it in GitHub Desktop.
Resolving wp-admin redirection loop in WordPress docker setup
define('FORCE_SSL_ADMIN', true);
if(!defined('WP_CLI')){
if (strpos($_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') !== false){
$_SERVER['HTTPS']='on';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment