$browser_engine
The $browser_engine variable exposes the rendering engine of the browser making the request.
Type
string
Possible values
- Blink
- Gecko
- WebKit
Example
location / {
proxy_set_header X-Browser-Engine $browser_engine;
proxy_pass http://backend;
}