Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Forum: Fixing WordPress
    In reply to: WP Behind a proxy
    Thread Starter amooz

    (@amooz)

    I must apologize, I was digging through the logs on the WP server instead of my proxy server, I needed to add the following directive to actually allow the proxy:

    <Location />
    Order deny,allow
    Allow from all
    </Location>

    So my new config looks like this:

    NameVirtualHost *:80
    NameVirtualHost *:443
    
    <VirtualHost *:80>
            ServerName SERVER_URL
            ProxyPreserveHost On
            ProxyPass / http://1.2.3.4/
            ProxyPassReverse / http://1.2.3.4/
    <Location />
    Order deny,allow
    Allow from all
    </Location>
    </VirtualHost>

    Forum: Fixing WordPress
    In reply to: WP Behind a proxy
    Thread Starter amooz

    (@amooz)

    Anyone? My website is down until this can be fixed..

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