我想将 nginx 服务器限制在一个目录中,在本例中为 example/。我本以为是这样的,但它不起作用。
location ~ !(^/example) {
return 403;
}
答案1
server {
# other server directives
deny all;
location /example {
allow all;
# other location directives
}
}
我想将 nginx 服务器限制在一个目录中,在本例中为 example/。我本以为是这样的,但它不起作用。
location ~ !(^/example) {
return 403;
}
server {
# other server directives
deny all;
location /example {
allow all;
# other location directives
}
}