Does Apache2 Configured as ReverseProxy Hide Cookies Set by Backend Servers?
- by Ianthe
I use Apache 2.2.16 as Reverse Proxy. For a static website, I don't have any issues. However, when began to use cookies, I've noticed that cookies are not being sent to the client.
Here's a snippet of my config:
<VirtualHost *:80>
ServerName app.somewhere.com:80
ServerAlias app
ProxyRequests Off
ProxyPreserveHost On
…