ฉันใช้การกำหนดค่าเริ่มต้นในขณะที่เพิ่มไดเร็กทอรีเฉพาะที่ติดตั้ง nginx บนเครื่อง ubuntu 12.04 ของฉัน
server {
#listen 80; ## listen for ipv4; this line is default and implied
#listen [::]:80 default ipv6only=on; ## listen for ipv6
index index.html index.htm;
# Make site accessible from http://localhost/
server_name localhost;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to index.html
root /username/test/static;
try_files $uri $uri/ /index.html;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
...
...
}
ฉันแค่ต้องการเซิร์ฟเวอร์ nginx แบบคงที่แบบธรรมดาเพื่อให้บริการไฟล์จากไดเร็กทอรีนั้น อย่างไรก็ตามการตรวจสอบerror.log
ฉันเห็น
2014/09/10 16:55:16 [crit] 10808#0: *2 stat() "/username/test/static/index.html" failed (13: Permission denied), client:, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "domain"
2014/09/10 16:55:16 [error] 10808#0: *2 rewrite or internal redirection cycle while internally redirecting to "/index.html
ผมเคยทำมาแล้วchown -R www-data:www-data
เมื่อวันที่ฉันได้กำหนดให้/username/test/static
chmod 755
ฉันไม่รู้ว่าต้องตั้งค่าอะไรอีก
www-data
ผู้ใช้cd
ไปยัง/username/test/static
ไดเร็กทอรีได้หรือไม่:sudo -u www-data cd /username/test/static