[Fixed]-Are these VirtualHost settings workable with Django?

1👍

Just remove the slash after static, I had same issue, turns out extra slash after static was issue.

Alias /static /home/httpd/html/subdomain.mywebsite.com/public_html/static/

Also as mentioned by OP in comments, removing ProxyPass helped.

ProxyPass / http://127.0.0.1:8000/
👤Aki003

Leave a comment