Linux

Ubuntu 上的 nginx 目錄列表

  • October 26, 2016

我搜尋了很多,每個人都說在配置文件中添加這些,它會起作用:

location /my_directory {
   autoindex on;
}

我打開**/etc/nginx/nginx.conf**文件並將其添加到下面http但服務沒有啟動。將其添加到http -> server並收到403 forbidden error

我對nginx一無所知。有人可以輕鬆地告訴我我該怎麼做嗎?

謝謝

您需要添加:

location /my_directory {
   autoindex on;
}

在與/etc/nginx/sites-enabled您的站點使用的虛擬主機相對應的目錄中的文件中。文件中已經有一個server塊,因此您只需將location塊放在塊內即可server

引用自:https://serverfault.com/questions/811409