我正在尝试通过我的 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