1. = (exactly)  :  location = /path

  2. ^~ (forward match)  :  location ^~ /path

  3. ~ (regular expression case sensitive)  :  location ~ /path/

  4. ~* (regular expression case insensitive)  :  location ~* .(jpg|png|bmp)

  5. /  :  location /path