Apache 역방향 프록시 SSL이 쿠키를 전달하지 않습니다.

Apache 역방향 프록시 SSL이 쿠키를 전달하지 않습니다.

Windows 서버에 Apache 2.4 역방향 프록시가 설정되어 있습니다. 서버는 역방향 프록시를 통해 사용자를 다른 서버로 리디렉션하고 쿠키를 저장해야 합니다. 우리는 그것을 설정했는데, 클라이언트에 쿠키가 설정되어 있지 않다는 점을 제외하면 잘 작동합니다.

<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>

누군가 나를 도와줄 수 있나요?

관련 정보