Django Webpack 加载器 Apache2

Django Webpack Loader Apache2

我有一个带有 webpackloader djangorest-react js 的项目,在生产中一切正常,但我每次都需要启动 django 服务器... 我的目标是 运行 django 和我的 apache2 反应项目 mod_wsgi,我可以 运行 django 项目但是反应仍然无法访问...

这是适用于 django 的 apache2 的工作配置,可以完美运行。

        # The ServerName directive sets the request scheme, hostname and port that
        # the server uses to identify itself. This is used when creating
        # redirection URLs. In the context of virtual hosts, the ServerName
        # specifies what hostname must appear in the request's Host: header to
        # match this virtual host. For the default virtual host (this file) this
        # value is not decisive as it is used as a last resort host regardless.
        # However, you must set it for any further virtual host explicitly.
        #ServerName www.example.com

        ServerAdmin support@flexiwork.fr
        DocumentRoot /var/www/html
        ServerName www.flexiwork.fr
        # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
        # error, crit, alert, emerg.
        # It is also possible to configure the loglevel for particular
        # modules, e.g.
        #LogLevel info ssl:warn

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined
        # For most configuration files from conf-available/, which are
        # enabled or disabled at a global level, it is possible to
        # include a line for only one particular virtual host. For example the
        # following line enables the CGI configuration for this host only
        # after it has been globally disabled with "a2disconf".
        #Include conf-available/serve-cgi-bin.conf
        Alias /static /home/olivier/coworking/API/static
        <Directory /home/olivier/coworking/API/static>
         Require all granted
        </Directory>
        Alias /media /home/olivier/coworking/API/backend/media
        <Directory /home/olivier/coworking/API/backend/media>
         Require all granted
        </Directory>
        <Directory /home/olivier/coworking/API>
                <Files wsgi.py>
                  Require all granted
                </Files>
        </Directory>
        #LogLevel info
        #WSGIApplicationGroup %{GLOBAL}
        WSGIScriptAlias / /home/olivier/coworking/API/backend/wsgi.py process-group=coworking
        WSGIDaemonProcess coworking python-path=/home/olivier/coworking/API python-home=/home/olivier/coworking/API/env processes=5 threads=15
        WSGIProcessGroup coworking
</VirtualHost>

我想我需要使用另一个守护进程或代理,但如果您有任何链接或建议,我会有点迷茫,提前谢谢。

构建后我在 django 的 wsgi 选择中加载了错误的设置文件,这不是 apache2 的问题,这是我的配置文件:

import os
from django.conf import settings
from django.core.wsgi import get_wsgi_application
#from ws4redis.uwsgi_runserver import uWSGIWebsocketServer

#Here use your production settings configuration
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.production_settings')

application = get_wsgi_application()

_django_app = get_wsgi_application()
#_websocket_app = uWSGIWebsocketServer()

def application(environ, start_response):
    if environ.get('PATH_INFO').startswith(settings.WEBSOCKET_URL):
        return _websocket_app(environ, start_response)
    return _django_app(environ, start_response)

别忘了收集静态信息

python3 manage.py collectstatic