tidalgo22
9/14/2017 - 7:37 AM

nginx configuration list

~	-tilde instructs nginx to perform a case-sensitive regular expression match, instead of a straight string comparison.
^ -matches the beginning of the input. For example, ^/photos/.*$ would match paths beginning in '/photos/'. By itself, ^ is a shortcut for all paths (since they all have a beginning).
* -matches all strings.