<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=us-ascii"><meta name=Generator content="Microsoft Word 12 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:70.85pt 70.85pt 70.85pt 70.85pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=FR link=blue vlink=purple><div class=WordSection1><p class=MsoNormal>Hi,<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>I was looking for hours what is the problem with my conf.<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>I am trying to implement a nginx reverse loadbalancer with tomcat application servers.<o:p></o:p></p><p class=MsoNormal>I chose the route method here is the conf :<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal style='margin-left:70.8pt'>map $cookie_jsessionid $route_cookie {<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'>    ~.+\.(?P<route>\w+)$ $route;<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'>}<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'><o:p> </o:p></p><p class=MsoNormal style='margin-left:70.8pt'>map $request_uri $route_uri {<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'>    ~jsessionid=.+\.(?P<route>\w+)$ $route;<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'>}<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'><o:p> </o:p></p><p class=MsoNormal style='margin-left:70.8pt'>upstream antares {<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'>   server xxxxx:8000 route=server1;<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'>   server yyyy:8000 route=server2;<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'>   sticky route $route_cookie $route_uri;<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'>}<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'><o:p> </o:p></p><p class=MsoNormal style='margin-left:70.8pt'>server {<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'>   listen XXXXX:51001;<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'><o:p> </o:p></p><p class=MsoNormal style='margin-left:70.8pt'>   access_log /var/log/nginx/c2375.log main;<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'><o:p> </o:p></p><p class=MsoNormal style='margin-left:70.8pt'>      location / {<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'>      proxy_buffers 8 4k;<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'>      proxy_busy_buffers_size 16k;<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'>      proxy_set_header Host $host;<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'>      proxy_set_header X-Real-IP $remote_addr;<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'>      proxy_pass http://antares;<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'>   }<o:p></o:p></p><p class=MsoNormal style='margin-left:70.8pt'><o:p> </o:p></p><p class=MsoNormal style='margin-left:70.8pt'>}<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>With this I get on the error.log :<o:p></o:p></p><p class=MsoNormal style='text-indent:35.4pt'>2014/11/18 19:56:40 [emerg] 9520#0: invalid parameter "route=server1" in /etc/nginx/conf.d/c2375.conf:13<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>I an using ngninx on rhel 6 with the rpm compile on ngin.org :<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal style='margin-left:35.4pt'>nginx version: nginx/1.6.2<o:p></o:p></p><p class=MsoNormal style='margin-left:35.4pt'>built by gcc 4.4.7 20120313 (Red Hat 4.4.7-3) (GCC)<o:p></o:p></p><p class=MsoNormal style='margin-left:35.4pt'>TLS SNI support enabled<o:p></o:p></p><p class=MsoNormal style='margin-left:35.4pt'>configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-mail --with-mail_ssl_module --with-file-aio --with-ipv6 --with-http_spdy_module --with-cc-opt='-O2 -g -pipe -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic'<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>Any idea ?<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal><b><span style='color:gray'>Rodriguez Daniel</span></b><span style='font-size:9.0pt;color:blue'><br></span><b><span style='font-size:9.0pt;color:#FF9900'>Administrateur Infrastructures Clientes</span></b><b><span style='font-size:9.0pt;color:red'><br></span></b><span style='font-size:9.0pt;color:gray'>Groupe SOFTWAY MEDICAL<br>Tel: 04 42 97 66 36<br>Gsm : 06 59 75 17 58<br><br></span><span style='font-size:9.0pt'><a href="http://www.softwaymedical.fr"><span style='color:blue'>www.softwaymedical.fr</span></a></span><o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p></div></body></html>