Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是新手。刚刚在windows中设置了apache服务器。但是现在我需要 nginx 来提供我的静态文件,我想我几乎到处搜索了如何配置 nginx 来提供静态文件,得到了很多答案,但很难理解。有人可以解释一下我从哪里开始以及如何在 Windows 中以菜鸟的角度配置 nginx 和 django。任何帮助将不胜感激。谢谢!
在你的部分尝试这样的事情server:
server
location /static/ { root /the_directory_with_your_files/; }