मैं अपने ubuntu 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