-
-
Save siliconsocket/ae72ad29b3ef8430efc229d1a7a42862 to your computer and use it in GitHub Desktop.
Mobile device detection in Nginx with just 7 lines of configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Testing if the client is a mobile or a desktop. | |
| ### The selection is based on the usual UA strings for desktop browsers. | |
| ## Testing a user agent using a method that reverts the logic of the | |
| ## UA detection. Inspired by notnotmobile.appspot.com. | |
| map $http_user_agent $is_desktop { | |
| default 0; | |
| ~*linux.*android|windows\s+(?:ce|phone) 0; # exceptions to the rule | |
| ~*spider|crawl|slurp|bot 1; # bots | |
| ~*windows|linux|os\s+x\s*[\d\._]+|solaris|bsd 1; # OSes | |
| } | |
| ## Revert the logic. | |
| map $is_desktop $is_mobile { | |
| 1 0; | |
| 0 1; | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here's how I use it (to redirect mobile traffic to an m.domain.com site):
Its a pretty old post but in case someone want to detect tablet and mobile separately here is my code
add_header x-ua-device $ua_device;