Linux
Ubuntu 上的 nginx 目錄列表
我搜尋了很多,每個人都說在配置文件中添加這些,它會起作用:
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
。