내 우분투 12.04 컴퓨터에 nginx가 설치된 특정 디렉토리를 추가하는 동안 기본 구성을 사용하고 있습니다.
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