我们在 Windows 服务器上设置了 Apache 2.4 反向代理。该服务器应通过反向代理将用户重定向到其他服务器并存储 cookie。我们设置了它,它运行良好,只是客户端上没有设置 cookie。
<VirtualHost _default_:443>
SSLEngine on
ServerName localhost:443
SSLCertificateFile "C:/Cert/targetdomain.com/fullchain1.pem"
SSLCertificateKeyFile "C:/Cert/targetdomain.com/privkey1.pem"
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
ProxyPassReverseCookieDomain "https://targetdomain.com" "http://localhost:8080"
ProxyPassReverseCookiePath "/" "/"
</Virtualhost>
有人能帮我吗?