See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| http { | |
| ... | |
| # redirect map in http block - remove fbclid argument from the end | |
| map $request_uri $redirect_fbclid { | |
| "~^(.*?)([?&]fbclid=[a-zA-Z0-9_-]+)$" $1; | |
| } | |
| ... |