環境:
Win10 x64
#nginx
(推薦教學:nginx教學)
問題分析:
專案需要一個小型的http檔案存取服務,對linux某個資料夾下的檔案及新建資料夾中的檔案進行http存取。
解決方案:
由於本身專案載入了nginx,所以在設定檔中進行更改,使之支援檔案及檔案(圖片)存取。
方法步驟:
1、開啟nginx的設定檔nginx.conf;
2、在設定檔開頭新增
user root; //使用root用户
3、新增server連接埠自訂
server { listen 8088; server_name localhost; location / { root /home/ubuntu/Desktop/folder; // 设置访问根目录 autoindex on; }
4、儲存,重啟nginx。
以上是你知道如何設定資料夾存取權限麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!