我不能通过nginx提供静态服务

时间:2013-05-19 18:08:26

标签: node.js ubuntu nginx

我有以下nodejs结构,它位于/ home / ubuntu / project目录中:

 sever
 site
   |-css
   |  |-styles.css
   |-img
   |  |-sprite.png
   |-js
     |-script.js

我正在尝试通过nginx提供静态资源,所以我写了以下位置:

upstream myapp_upstream {
    server 127.0.0.1:3000;
    keepalive 64;
}

server {
    listen 80;

    server_name www.myapp.com;

    error_page 400 404 500 502 503 504 /50x.html;
    location  /50x.html {
            internal;
            root /usr/share/nginx/www;
    }

    location ~ ^/(images/|img/|javascript/|js/|css/|stylesheets/|flash/|media/|static/|robots.txt|humans.txt|favicon.ico|home/|html|xml) {
        root /home/ubuntu/project/site;
        access_log off;
        expires max;
    }

    location / {
        proxy_redirect off;
        proxy_set_header   X-Real-IP            $remote_addr;
        proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
        proxy_set_header   X-Forwarded-Proto $scheme;
        proxy_set_header   Host                   $http_host;
        proxy_set_header   X-NginX-Proxy    true;
        proxy_set_header   Connection "";
        proxy_http_version 1.1;
        proxy_pass         http://myapp_upstream;
        proxy_intercept_errors on;
    }
}

但是当我尝试在浏览器中打开我的网站时,我在所有请求的资产上都失败了。这是问题吗?

修改 我的css路线是:

http://www.myapp.com/css/styles.css

1 个答案:

答案 0 :(得分:1)

好吧,

在根路径中添加/

root /usr/share/nginx/www;

应该是

root /usr/share/nginx/www/;

使用alias作为资产:

alias /home/ubuntu/project/site/; (again, add the last /)

对我来说这是一团糟:

location ~ ^/(images/|img/|javascript/|js/|css/|stylesheets/|flash/|media/|static/|robots.txt|humans.txt|favicon.ico|home/|html|xml)

您应该查看这些http://wiki.nginx.org/NginxHttpCoreModule#location

我在您的站点地图中看不到这些文件夹images/, javascript/, stylesheets/, flash/, media/, static/ and home/

这两个|html|xml正在寻找路由/html/xml而不是.html.xml个文件。

然后尝试:

location ~ ^/(robots.txt|humans.txt) {
    alias /home/ubuntu/project/site/;
    access_log off;
    expires max;
}

location ~* \.(?:ico|css|js|gif|jpe?g|png)$ {  //add here all the file extensions needed.
    alias /home/ubuntu/project/site/;
    access_log off;
    expires max;     
}