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>
誰か助けてくれませんか?