nginx位置代字号

Cor*_*son 3 regex nginx nginx-location

什么是在Nginx位置指令中做的波浪号(〜)?即:

location ~* \.(png|gif|jpg)$ {
  [...configuration]
}
Run Code Online (Sandbox Code Playgroud)

Cor*_*son 7

波浪号(〜)是Nginx的标识符,让它知道位置块正在使用REGEX来匹配该位置.

"〜"= REGEX匹配,区分大小写

"〜*"= REGEX匹配,不区分大小写

Nginx文档