9951 explained code solutions for 126 technologies


nginxUsing location with regex


server {
  location ~* \.(png|jpg|gif)$ {
    # ...
  }
}ctrl + c
server {

virtual server configuration block

location

location block start

~*

use case-insensitive regex in this location block

\.(png|jpg|gif)$

sample regex to use (match image extensions)