location block https://www.youtube.com/watch?v=3q2xxMc7XEo Matching order = Exact match ^~ Preferential match ~ & *~ Regex match no mofier Prefix match # Matches any prefix # /greet # /greeting # /greet/something location /greet { return 200 'Hello from nginx prefix match location block'; } # Exact match location = /greet { return 200 'Hello from nginx exact match location block'..