gpt4 book ai didi

Node.js : Nginx won't serve static content

转载 作者:太空宇宙 更新时间:2023-11-03 22:03:00 24 4
gpt4 key购买 nike

我正在尝试通过我的 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、图像) - 但在删除此内容后,我看到显示了静态内容。在 Node 方面,我使用的是express和jade。

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

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

最佳答案

尝试以下操作:

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;
}

关于Node.js : Nginx won't serve static content,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11922251/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com