Pular para conteúdo

$browser_family

The $browser_family variable provides the family of the browser making the request.

Type

string

Possible values

  • Chrome
  • Firefox
  • Safari

Example

location / {
    proxy_set_header X-Browser-Family $browser_family;
    proxy_pass http://backend;
}