Skip to content

Commit

Permalink
Partitioned cookies
Browse files Browse the repository at this point in the history
Implement Cookies Having Independent Partitioned State as described here https://developer.mozilla.org/en-US/docs/Web/Privacy/Privacy_sandbox/Partitioned_cookies.
  • Loading branch information
wsmirnow committed Dec 5, 2024
1 parent a657895 commit 81bdc40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ http {
proxy_redirect http://$host https://$host;

# Ensure Cookies are marked as Secure and HTTPOnly
proxy_cookie_path / "/; HTTPOnly; Secure; SameSite=none";
proxy_cookie_path / "/; HTTPOnly; Secure; SameSite=none; Partitioned";

# Do not buffer responses
proxy_buffering off;
Expand Down

0 comments on commit 81bdc40

Please sign in to comment.