Apache running on (dummy IP)
http://1.1.1.1:2222
IIS 7.5 running on
http://1.1.1.1:80
Apache Config (proxying to IIS port 80)
ProxyPass /a http://1.1.1.1:80/a
ProxyPassReverse /a http://1.1.1.1:80/a
When I hit apache's URL
http://1.1.1.1:2222/a ,
which return a setCookie (from IIS port 80)
Set-Cookie:ASP.NET_SessionId=4wlnzzzzljdqnyyro55; path=/; HttpOnly
From chrome's web-inspector, The cookie is both set on port 2222 (apache) and port 80 (IIS).
Does it mean Apache proxies the cookie to IIS on port 80 and hence the cookie set on both port 80 and 2222 ?
or have I missed something?