Tôi đang sử dụng cấu hình mặc định trong khi thêm thư mục cụ thể có cài đặt nginx trên máy ubuntu 12.04 của mình.
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
}
...
...
}
Tôi chỉ muốn một máy chủ nginx tĩnh đơn giản để cung cấp các tệp ra khỏi thư mục đó. Tuy nhiên, kiểm tra error.log
tôi thấy
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
Tôi đã thực hiện chown -R www-data:www-data
trên /username/test/static
, tôi đã đặt chúng vào chmod 755
. Tôi không biết những gì khác cần được thiết lập.
www-data
lon dùngcd
đến/username/test/static
thư mục:sudo -u www-data cd /username/test/static