Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter kuros61099

    (@kuros61099)

    I found it. It was a configuration mistake. The correct hostname was send in the x-forwarded-host header and the host header contains the hostname of my proxy destination. So I forget to tell wordpress to use the value from x-forwarded-host as host and not the one from the host header. This snippet added to wp_config.php did the trick:

    if (isset($_SERVER['HTTP_X_FORWARDED_HOST'])) {
    $_SERVER['HTTP_HOST'] = $_SERVER['HTTP_X_FORWARDED_HOST'];
    }
    • This reply was modified 2 months, 3 weeks ago by kuros61099.
    Thread Starter kuros61099

    (@kuros61099)

    Thats correct erp is the hostname of my proxy destination as I wrote: I get redirected to https://[HOSTNAME OF PROXY DESTINATION]/test. Have you an idea where to look for this? Because I already searched through the hole DB for that, but could not find it.

Viewing 2 replies - 1 through 2 (of 2 total)