Regarding ERROR: XmlParseFailure

Pankaj Kaushik dev.panky2014 at gmail.com
Sat Aug 9 13:19:05 UTC 2014


Hi,

I am getting this error : ERROR: XmlParseFailure

Can anybody please let me know what is the issue?

Below is my nginx.conf.

         map $uri $key2 {
                 ~^(?<key>/[^/]+)/ $key;
                default "";
        }
        upstream backend {
                hash $key2 consistent;
                server 10.0.0.22:8080;
                server 10.0.0.23:8080;
                server 10.0.0.24:8080;
                server 10.0.0.25:8080;
                server 10.0.0.26:8080;
        }

            server {
                listen 90 default_server;

                location $uri {
                    proxy_pass http://backend;
                }

        }

Thanks,
Panky
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20140809/56b8f533/attachment.html>


More information about the nginx mailing list