我正在尝试仅为我的内部 IP 范围打开索引。
到目前为止我测试过的一些东西:
geo $internals {
default 0;
192.168.2.0/24 1;
}
location / {
# Attempt 1, same error message.
if ($internals) {
autoindex on;
}
# Attempt 2, same error message.
if ($remote_addr = "192.168.2.[2|254]") {
autoindex on;
}
try_files $uri $uri/ /index.php;
}
无论我尝试什么,我总是得到:
Restarting nginx: nginx: [emerg] "autoindex" directive is not allowed here in ...