使用AWS的Django,帮我找到目标wsgi脚本

voase2hg  于 2023-03-13  发布在  Go
关注(0)|答案(1)|浏览(86)

好吧,我最近有我的整个网站启动和运行。然而,我切换计算机和检索网站代码,我下载了项目的ZIP。每当我运行eb部署错误出现,因为它说我的WSGI指向一个不存在的文件。这里是我的项目结构。

-suliman_baldo

    -bin

    -include
    -lib
    -suliman_baldo
        -.ebextension
        -01-flask.config
        -django.config
    -.elasticbeanstalk
        -config.yml
    -gallery
    -main
    -static
    -templates
    -suliman_baldo
       -admin.py
       -settings.py
       -urls.py
       -wsgi.py

下面是我的django.config文件

option_settings:
    aws:elasticbeanstalk:container:python:
    WSGIPath: suliman_baldo/wsgi.py

这很奇怪,因为项目结构和以前一样,但是WSGI路径发生了变化

hmae6n7t

hmae6n7t1#

所以我找到了一个解决方案。我的WSGI路径是正确的,但由于某种原因不工作。所以我写了eb配置到终端,你可以改变那里的WSGI路径。

相关问题