Всем привет, подскажите пожалуйста, нужно что бы браузеры с 80-ой версии
И с 90-ой могли выставлять в
SameSite=None в браузерах
В документации имется такая конструкция:
```
http {
map $http_user_agent $samesite_none {
default "";
"~Chrom[^ \/]+\/8[\d][\.\d]*" "; SameSite=None";
/8[\d][\.\d]*" "; SameSite=None";
}
# Your other http directives...
server {
# Your other server directives...
location / {
# Your other location directives...
proxy_cookie_path /uas /uas$samesite_none;
proxy_cookie_path / /$samesite_none;
}
}
}
Как добавить в этот конфиг, версию 90 ?
"~Chrom[^ \/]+\/9[\d][\.\d]*" "; SameSite=None";