Apache ProxyPass and Sessions

北城余情 提交于 2019-12-01 16:22:26

As covener already mentioned, the second parameter of ProxyPassReverseCookiePath should be a path. Be aware that the parameters are switched compared to the other directives, so in your case it would be:

ProxyPassReverseCookiePath / /folder

(Technically, this should not be necessary for it to work, as cookies from the path / are also available in /folder/, but it might cause them to interfere with the cookies of other web applications that you are running on the same domain.)

In addition, you might want to transform the cookie domain as well (unless you access your application only through http://localhost/folder/):

ProxyPassReverseCookieDomain localhost example.com

example.com is the domain over which your web application is accessed.

ProxyPassReverseCookiePath's 2nd parameter should just be a path, not a full URL. Apache can't properly fixup the path baked into the cookie w/ the current invalid usage.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!