How to set up WordPress behind a secure reverse proxy using NGINX

After getting your SSL-certificate and have enabled HTTPS redirection in NGINX, WordPress will not work due to mixed content (HTTP and HTTPS) – you won’t be able to login. In order to fix this you first have to add this at the very start of your wp-config.php. define(‘FORCE_SSL_ADMIN’, true); if ($_SERVER[‘HTTP_X_FORWARDED_PROTO’] == ‘https’) $_SERVER[‘HTTPS’]=’on’; Then Read more about How to set up WordPress behind a secure reverse proxy using NGINX[…]

GPO to enable Windows Defender periodic scanning

Create a new GPO, edit Goto Computer configuration – preferences – windows settings – Registry. Add the following keys [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Defender] “DisableAntiSpyware”=dword:00000000 “DisableAntiVirus”=dword:00000000 “PassiveMode”=dword:00000002 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WdBoot] “Group”=”Early-Launch” “Start”=dword:00000000 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WdFilter] “Start”=dword:00000000 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WinDefend] “Start”=dword:00000002 Periodic scanning will be enabled alongside your current AV after a reboot.