Hello,

On 4/21/16 10:55 AM, Francis Daly wrote:
On Thu, Apr 21, 2016 at 10:41:24AM -0400, Jim Ohlstein wrote:
On 4/21/16 10:17 AM, Igor Sysoev wrote:
On 21 Apr 2016, at 17:09, Jim Ohlstein <j...@ohlste.in> wrote:

Hi there,

   location / {
       proxy_pass http://10.0.250.37:8000;
       proxy_set_header   Host  $host;

proxy_redirect  https://lists.mydomain.com:8000/  /;

Same result. I believe I had tried it already. To make certain I
wasn't seeing a cached response I checked with curl:

curl -I https://lists.mydomain.com

Location: http://lists.mydomain.com:8000/mailman/listinfo

If that is the line that comes back from the proxy_pass'ed server to
nginx, then you want

   proxy_redirect http://lists.mydomain.com:8000/ /;

(where the first argument to proxy_redirect is the string that you want
to replace with the second argument, allowing for scheme://host to be
added later.)

If you can do without the "proxy_set_header Host" line, then you can
possibly do without proxy_redirect altogether (as in: use "proxy_redirect
default;" implicitly).

        f


Thanks, Francis. That did work.

--
Jim Ohlstein


"Never argue with a fool, onlookers may not be able to tell the difference." - Mark Twain

_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to