Hi,
My problem is that Nginx prox to Apache:
location / {
set $domain "http://www.mydomain.com";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_redirect off;
proxy_pass http://127.0.0.1:2013;
}
Apache listens on port 2013, page is displayed correctly bat after the entry www.mydomain.com/forum URI looks www.mydomain.com:2013/forum (port is visible) entering the www.mydomain.com/forum/ problem does not occur - port is not visible.
In version nginx/0.6.32 everything worked correctly after updating to nginx/0.7.62 and nginx-0.8.29 there is a problem.
Someone has met with such a problem? or has any idea ?
Regards,
Sali