I have at condition checking to see if user has a cookie like this:
if ($http_cookie ~* "developer=true" ) {
...
}
I'm not familiar with the ~*
syntax, I assume that that means if it 'contains', but what about the opposite? like what if I wanted to check if $http_cookie
doesn't contain that cookie?