如何在nginx上配置目录

时间:2018-10-19 15:48:54

标签: directory nginx-location

我正在尝试设置对以下网址的访问权限

http://example.com/network

我在服务器块中进行了以下配置

服务器{ 监听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错误。

我要去哪里错了?谢谢您的帮助。

0 个答案:

没有答案