WordPress & Reverse Proxy

Mein WordPress läuft auf Proxmox im LXC.

Nach dem Setup ist die Beispiel-Seite und das Admin-Portal über IP erreichbar.

Sobald ich jedoch in den WordPress-Einstellungen meine URL gesetzt habe, bekam ich einen Umleitungsfehler.

Nach vielen Recherchen hier die Lösung

In der wp-config.php muss folgende Konfiguration für einen Reverse-Proxy eingetragen werden.

<?php
/**
* The base configuration for WordPress
*
* The wp-config.php creation script uses this file during the installation.
* You don't have to use the website, you can copy this file to "wp-config.php"
* and fill in the values.
*
* This file contains the following configurations:
*
* * Database settings
* * Secret keys
* * Database table prefix
* * ABSPATH
*
* @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/
*
* @package WordPress
*/

/**
* Handle SSL reverse proxy
*/
if ($_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')
$_SERVER['HTTPS']='on';

if (isset($_SERVER['HTTP_X_FORWARDED_HOST'])) {
$_SERVER['HTTP_HOST'] = $_SERVER['HTTP_X_FORWARDED_HOST'];
}

.....

Ein Neustart des Servers ist nicht erforderlich.

Schreibe einen Kommentar