1
It is more easy deploying with mod_wsgi on shared hosting. I work on Quijost and we offer a built-in package with Django 1.4 and Python 2.7 under mod_wsgi using nginx as backend.
We wrote a small tutorial in our forums for mod_wsgi and maybe it is useful for your example with fastcgi.
0
Response from GoDaddy from this thread:
“FastCGI is accessible from Python scripts for our Linux hosting
accounts. We do not allow, however, the addition of a custom FastCGI
handler in our shared hosting accounts.”
So I think you’re pretty much out of luck. As am I, although I’m trying to convince the customer that having a webfaction account is a good idea, as that supports mod_wsgi.
- [Django]-Using Django RelatedField for custom join queries?
- [Django]-How to populate database fields when model changes in django
- [Django]-Django localization: labels don't get updated
- [Django]-How to save ManyToMany field in second database
0
Most of the shared hosting platforms that support python use phusion passenger to run python apps. You can upload your django app to your hosting and use wsgi to run it. As for now, django 2.2 causes problems so you will have to use django 2.1 or lower. I have written a step by step tutorial about it which can be accessed here.
- [Django]-Postgres connection details in django and chef
- [Django]-I have multiple django tables and want to query the tables in parallel
- [Django]-Django Test – South migration reports 'no such table' but I can see said table in the db
- [Django]-Django ORM – Grouped aggregates with different select clauses