在哪里以及如何使用 mod-wsgi 和 django 设置环境变量?
我正在尝试使用此 env 变量来指定我的模板的路径,使用 git 或 svn 可能会更容易做到这一点。
I'm trying to use this env variable to specify the path for my templates and it will probably be easier to do this using git or svn.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的
app.wsgi
文件中执行以下操作:In you
app.wsgi
file do:参考资料位于此处。但是您的项目路径的操作线(如果这就是您的意思)是:
但是,您的模板路径是在您的
settings.py 文件:
The reference material is here. But the operative line for your project path (in case that's what you mean) is:
However, your template path is set within your
settings.py
file: