Skip to content

Instantly share code, notes, and snippets.

@fdb713
Last active December 16, 2015 14:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fdb713/06d1d5b5e98a70939eb6 to your computer and use it in GitHub Desktop.
Save fdb713/06d1d5b5e98a70939eb6 to your computer and use it in GitHub Desktop.
nginx if two condition
if ($request_uri ~ "\.htm")
{
set $my_cond P;
}
if ($args){
set $my_cond "${my_cond}C";
}
if ($my_cond = PC)
{
return 403;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment