Hi
I have installed the catalyst and I am trying to integrate the same with Nginx.
rewrite /auction(.*)$ http://192.168.1.210$1;
the following rewrite rule is working for me right now.
If I write rule that u mentioned then it will gives the error
location /auction/ {
proxy_pass http://192.168.1.210;
}
The reason for error might is that because my request is just like..
http://192.168.1.45/auction?id=1332416535292370.0097187543142212
for that I required to write a regular expression
rewrite /auction(.*)$ http://192.168.1.210$1;
Hope Now you understand my point clearly.
If required any other info then let me know.