1. 程式人生 > >FileZilla上傳圖片成功,瀏覽器可以正常訪問nginx,但是訪問圖片報404

FileZilla上傳圖片成功,瀏覽器可以正常訪問nginx,但是訪問圖片報404

1、在/usr/local/nginx/html目錄下新建images資料夾         cd  /usr/local/nginx/html         mkdir images

2、新增一個location

cd  /usr/local/nginx/conf         vi  nginx.conf  新增一個location

        location  /images/  {         root    /home/ftpuser/www;         autoindex  on;         }

注意:在新增之前需要先建立/home/ftpuser/www/images這個目錄結構

3、重啟nginx         cd /usr/local/nginx/sbin/         ./nginx  -s  reload

4、修改使用者訪問許可權

目的是為了可以用Filezilla將圖片傳到伺服器上,否則會報錯

        chmod 777 –R /home/ftpuser

如果不行的話也可以一步步賦予操作許可權 chmod 777 /home/ftpuser /www,chmod 777 /home/ftpuser /www/images