Reputation: 59
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.
Upvotes: 3
Views: 7408
Reputation: 127
According to the nginx document ,you can use proxy_cookie_flags
:
proxy_cookie_flags your-cookie-name samesite=none;
Upvotes: 0