无法在osx上使用nginx + gunicorn查看静态文件

时间:2014-01-25 17:02:08

标签: django macos nginx gunicorn

我正在尝试在OSX(Mavericks)上设置django生产服务器。

这是我的nginx服务器配置文件:

server { 
    listen       80;
    server_name  localhost;
    error_log   /pathtoerrorlog;
    access_log  /pathtoaccesslog;

    # serve static files
    location ~ ^/static/  {
      root    /Users/Hello/assets;
      expires 30d;
    }

    # serve media files ~ ^
    location ~ ^/media/  {
      root    /Users/Hello/assets;
      expires 30d;
    }

    location / {
      proxy_set_header Host $host;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
          proxy_set_header X-Real-IP $remote_addr;    
      proxy_pass http://localhost:8000;
    }
  }

这是nginx.conf配置文件

user www-data;
worker_processes  4;

error_log   /var/log/nginx/error.log;

events {
    worker_connections  4092;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;
    tcp_nopush      on;
    tcp_nodelay on;

    keepalive_timeout  65;

    types_hash_max_size 2048;
    server_names_hash_bucket_size 64;

    gzip  on;
    gzip_disable "msie6";

    include /etc/nginx/sites-enabled/*;

}

我在系统上创建了一个名为www-data的用户,并提供了以下访问权限:

sudo chown -R www-data:www-data /usr/local/etc/nginx
sudo chown -R www-data:www-data /etc/nginx
sudo chown -R www-data:www-data /var/log/nginx

我没有任何错误就开始使用gunicorn,nginx的情况也是如此。

在浏览器中,localhost会将我重定向到django应用程序,但不会显示静态媒体。这是我得到的一个示例错误(对于静态内容而言),正如我在nginx错误日志中看到的那样:

2014/01/25 20:16:23 [error] 35068#0: *68 open()    "/Users/Hello/assets/static/css/base.css" failed (13: Permission denied), 
client: 127.0.0.1, server: localhost, request: "GET /static/css/base.css HTTP/1.1", host: "localhost", referrer: "http://localhost/" 

我尝试使用sudo chown -R www-data:www-data assets更改/ Users / Hello / assets的权限但它没有帮助。 -R 777也没有用。

请告诉我哪里出错了。谢谢!

1 个答案:

答案 0 :(得分:1)

事实证明,必须为/ Users / Hello / assets的所有父目录授予读取权限。因此,我设置了对所有用户,Hello,资产的读取权限,而不仅仅是之前的资产。

相关文章是:

Nginx 403 forbidden for all files

http://nginxlibrary.com/403-forbidden-error/