0

我有以下 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
4

1 回答 1

1

出色地,

将 a 添加/到根路径。

root /usr/share/nginx/www;

应该

root /usr/share/nginx/www/;

为资产使用别名,例如:

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;     
}
于 2013-05-19T19:39:59.663 回答