我试图让Apache运行.wsgi文件,并同时读取nuxt文件(对我来说),但是每次都只有一个发生。
我的工作目录文件:
C:/Users/Documents/prototype
wsgi文件:
C:/Users/Documents/prototype/apache/application.wsgi
此处是Nuxt目录:
${SRVROOT}/htdocs/dist/
httpd-vhosts.conf:
DocumentRoot "C:/Users/Documents/prototype/apache"
ServerName servername:443
WSGIScriptAlias / "C:/Users/Documents/prototype/apache/application.wsgi"
# Alias / "${SRVROOT}/htdocs/dist/"
<Directory "C:/Users/Documents/prototype/apache">
Require all granted
</Directory>
对于当前代码,只有我的应用程序正在运行,浏览器正在加载(我想这只是我的应用程序在运行),但是如果我更改此行:
# Alias / "${SRVROOT}/htdocs/dist/"
并删除“#”,那么我可以看到我的网页首页。如果我尝试在应用程序中推送选项卡之一,它将显示:
network error
就像我的python应用程序未运行一样。
我试图单独运行flask应用程序(在cmd上)及其工作。
我真的需要帮助使Apache同时运行它们!