jm_p_op

nginx - map (~dictionary) 본문

카테고리 없음

nginx - map (~dictionary)

jm_p_op 2024. 6. 24. 11:29
#예시
map $http_user_agent $ignore_useragent {
    default 1;
    "ELB-HealthChecker/2.0" 0;
}
map $input_var $new_var {
 default default_value;
 input_var_case1 output;
 ...
}