我正在尝试设置对以下网址的访问权限
我在服务器块中进行了以下配置
服务器{ 监听80 default_server;
server_name example.com;
access_log /var/log/nginx/example/example.access.log main;
error_log /var/log/nginx/example/example.error.log错误;
位置/ {
root /var/www/example/;
index index.php index.html index.htm;
try_files $uri $uri/ =404;
位置
/ opt / network / {
autoindex on;
}
}
}
然后,http://example.com/network访问404错误。
我要去哪里错了?谢谢您的帮助。