2

我正在尝试通过我的 node.js 应用程序上的 nginx 提供静态内容。对于看似简单明了的设置,我无法通过 nginx 路由静态内容。有了这条线:

  location ~* ^.+\.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|pdf|txt|tar|wav|bmp|rtf|js|flv|swf|html|htm)$ {
                    access_log off;
                    expires max;
    }

nginx 不提供任何静态内容(js、css、图像) - 但在删除它时,我看到显示静态内容。在节点方面,我使用的是 express 和 jam。

nginx.conf: https ://gist.github.com/3331669

默认: https ://gist.github.com/3331674

4

3 回答 3

2

尝试以下操作:

location ~  \.(jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|pdf|txt|tar|wav|bmp|rtf|js|flv|swf|html|htm)$ {
  access_log off;
  expires max;
}
于 2012-08-13T01:21:12.503 回答
0

尝试以下

location ~*  .*\.(jpe?g|gif|png|ico|css|zip|tgz|gz|rar|bz2|pdf|txt|tar|wav|bmp|rtf|js|flv|swf|html?)$ {
  access_log off;
  expires max;
}
于 2012-08-12T16:15:10.813 回答
0

尝试

location ~* .*\.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|pdf|txt|tar|wav|bmp|rtf|js|flv|swf|html|htm)$ {
        access_log off;
        expires max;
        root /var/www/yoursitename/public;
    }
于 2013-08-16T13:39:46.253 回答