我的网站在本地运行良好,但当我把它放在我的服务器上时,它无法加载静态文件。这是我的档案。
settings.py
/myproject/mymainapp/static
我的所有静态都在[...]
root /home/user/site/mymainapp/;
[...]
location /static {
alias /home/user/site/mymainapp/static;
}
我通过在生产中管理collectstatic来获得项目根目录的另一个“静态”目录。
这是我的nginx conf文件:
urlpatterns = [
[...] nothing relative to static files
]
我已尝试在我的根目录项目中设置静态目录的路径,但它没有做任何更好的事情。
我的网址模式:
class Foo {
// prevent empty lines
bar() {
}
// prevent empty lines
}
也许我应该在我的网址模式中添加一些东西?
感谢您的帮助:)