skip to Main Content

Django Apache setup – forbidden Error 403

Since it did not work on the first time, I created a fresh new venv for my django project. my folder structure looks like this: btw I used the Django/Apache Setup guide from digitalOcean (https://www.digitalocean.com/community/tutorials/how-to-serve-django-applications-with-apache-and-mod_wsgi-on-ubuntu-16-04) /home/pi/myproject/myprojectenv (this is where my…

VIEW QUESTION

`NameError: name 'TypeError' is not defined` in Apache (mod_wsgi)

Install Version Apache apr-1.6.5 apr-util-1.6.1 httpd-2.4.7 mod_wsgi-4.6.8 pcre-8.32 Python 3.8.5 Django 3.1.2 Apache http.conf Listen 3600 WSGISocketPrefix /var/run/wsgi <VirtualHost *:3600> WSGIDaemonProcess project_name display-name=project_name WSGIScriptAlias / /data/project_name/config/wsgi.py process-group=api application-group=api ServerName project_name <Directory /data/project_name/config> Order allow,deny Allow from all Require all granted…

VIEW QUESTION

hosting Django on Apache

I'm following a tutorial trying to host Django on apache server, now as I finally installed mod_wsgi using cmd, I try to use the command: mod_wsgi-express module-config now i get another bugging error - which is: Microsoft Windows [Version 6.1.7601]…

VIEW QUESTION
Back To Top
Search