3

On an Apache test server, our vendors were able to achieve what we needed by setting

Header edit Set-Cookie ^(.*)$ $1;HttpOnly;Secure;SameSite=None

in .htaccess. However, our live site is running Nginx and we are having trouble figuring out how to translate this into something we can configure there.

Steven Lykins
  • 59
  • 1
  • 3

1 Answers1

1

Try: proxy_cookie_path / "/; secure; HttpOnly; SameSite=none";

AeonM
  • 194
  • 1
  • 9