with no evil plans I am trying to mirror a site under other domain, while changing a few strings on the fly.
I set up nginx on a new host to serve as a RP to the master site. This allows to set one rule of replacement:
sub_filter Originalstring 'new string';
sub_filter_once off;
However, I'd like to have several rules running, which sub_filter allows only one per location.
What can be a solution here, if any?