Which of the following did you do? I followed the directions in this linkhttps:// docs.djangoproject.com/en/5.1/howto/deployment/wsgi/modwsgi/
* Install system Apache/mod_wsgi package. I only installed xammp * Install using pip install mod_wsgi and configure Apache to use that. >From https://pypi.org/ I downloaded mod_wsgi and installed using pip install mod_wsgi WSGIScriptAlias / /xampp/htdocs/PalestraGes/PalestraGes/wsgi.py WSGIPythonHome /xampp/htdocs/PalestraGes/venv WSGIPythonPath /xampp/htdocs/PalestraGes. <Directory /xampp/htdocs/PalestraGes/PalestraGes>. <Files wsgi.py> Require all granted </Files> </Directory> * Build and install mod_wsgi from source code. I read that you have to compile a file. I downloaded the mod_wsgi-5.0.1.tar.gz folder and in the src/server folder there are several files but I don't know which one I should use or how to compile it (I think it's refereed to the mod_wsgi.so file ?) * Some other way. In the notes I read that in the apache folder there should be the mod_WSGI folder but it is not present Il giorno dom 27 ott 2024 alle ore 20:53 Graham Dumpleton < [email protected]> ha scritto: > What steps did you take to install mod_wsgi? > > Which of the following did you do? > > * Install system Apache/mod_wsgi package. > * Install using pip install mod_wsgi and configure Apache to use that. > * Build and install mod_wsgi from source code. > * Some other way. > > What changes did you make to the Apache configuration? > > On 28 Oct 2024, at 3:49 AM, Gaetano Leoni <[email protected]> wrote: > > Hi, has anyone ever installed mod_wsgi with apache ? > I read How to use Django with Apache and mod_wsgi and after installing > mod_wsgi and updating http.conf apache doesn't start because mod_WSGI.so > file is missing and also mod_wsgi folder is not present inside apache > folder > > -- > You received this message because you are subscribed to the Google Groups > "modwsgi" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion visit > https://groups.google.com/d/msgid/modwsgi/61ea575a-dbb6-42ce-bfa0-f2c6a2cef30fn%40googlegroups.com > <https://groups.google.com/d/msgid/modwsgi/61ea575a-dbb6-42ce-bfa0-f2c6a2cef30fn%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > > -- > You received this message because you are subscribed to the Google Groups > "modwsgi" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion visit > https://groups.google.com/d/msgid/modwsgi/639316B7-7623-441F-B84D-85723FF41F29%40gmail.com > <https://groups.google.com/d/msgid/modwsgi/639316B7-7623-441F-B84D-85723FF41F29%40gmail.com?utm_medium=email&utm_source=footer> > . > -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion visit https://groups.google.com/d/msgid/modwsgi/CAAucONSPGq%3DcB43qjMhSM4shp03gC3g3Fv%2BG1FkwhZAHs9TJWg%40mail.gmail.com.
