码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx map模块

时间:2019-04-29 21:06:12      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:host   ali   text   ring   ima   color   class   语言   span   

L77

技术图片

技术图片

 

 技术图片

技术图片

 

Syntax: map string $variable { ... }
Default:
Context: http

 

 

 

map 指令 

curl -H aaaa:4444444 -H Host:map.taohui.org.cn  http://192.168.0.51:10001

 

map $http_host $name {
    hostnames;

    default       0;

    ~map\.tao\w+\.org.cn 1;
    *.taohui.org.cn   2;
    map.taohui.tech   3;
    map.taohui.*    4;
}

map $http_user_agent $mobile {
    default       0;
    "~Opera Mini" 1;
}

server {
    listen 10001;
    default_type text/plain;
    location /{
        return 200 $name:$mobile\n;
    }
}

 

 

类似编程语言的switch case 

map $http_user_agent $mobile {#这个含义就是 当$http_user_agent 值 = "~Opera Mini"  那么我们就将 $mobile值设置为 1 否则就设置为 0
    default       0;
    "~Opera Mini" 1;
}

 

 

Syntax: map_hash_bucket_size size;
Default:
map_hash_bucket_size 32|64|128;
Context: http

 

 

 

 

 

Syntax: map_hash_max_size size;
Default:
map_hash_max_size 2048;
Context: http

Nginx map模块

标签:host   ali   text   ring   ima   color   class   语言   span   

原文地址:https://www.cnblogs.com/jackey2015/p/10396898.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!