[tests] test nested block in add_header_redefinition plugin (#10)

pull/14/head
Andrew Krasichkov 2017-04-11 18:18:51 +03:00 committed by GitHub
parent 14f0494afb
commit 5debeb9fa9
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
server {
add_header X-Frame-Options "DENY" always;
location / {
location /some {
add_header X-Frame-Options "DENY" always;
}
location /another {
add_header X-Foo foo;
}
}
}