replace string on proxy request

Igor Sysoev igor at sysoev.ru
Mon Apr 19 21:19:45 MSD 2010


On Mon, Apr 19, 2010 at 12:55:10PM -0400, Alberto wrote:

> We are using nginx as a reverse proxy, and we want to modify some strings on the body response.
> 
> The problem is this one:
> 
> http://www.doman.com -> proxied to -> http://192.168.0.0/
> 
> We get into the body response links like: http://192.168.0.0/0.gif.
> 
> How can we replace 192.168.0.0 by domain.com?

You may replace single string using

        sub_filter  http://192.168.0.0  http://www.domain.com;

However, it's better to configure backend to use "www.domain.com".


-- 
Igor Sysoev
http://sysoev.ru/en/



More information about the nginx mailing list