Ανεβάζοντας το Django site σας για το ευρύ κοινό (deploying)¶
Django is full of shortcuts to make Web developers” lives easier, but all those tools are of no use if you can’t easily deploy your sites. Since Django’s inception, ease of deployment has been a major goal.
There are many options for deploying your Django application, based on your architecture or your particular business needs, but that discussion is outside the scope of what Django can give you as guidance.
Django, being a web framework, needs a web server in order to operate. And since most web servers don’t natively speak Python, we need an interface to make that communication happen.
Django currently supports two interfaces: WSGI and ASGI.
- WSGI is the main Python standard for communicating between Web servers and applications, but it only supports synchronous code.
- ASGI is the new, asynchronous-friendly standard that will allow your Django site to use asynchronous Python features, and asynchronous Django features as they are developed.
You should also consider how you will handle static files for your application, and how to handle error reporting.
Finally, before you deploy your application to production, you should run through our deployment checklist to ensure that your configurations are suitable.
- Πως να ανεβάσετε το site σας χρησιμοποιώντας το WSGI
- Πως να χρησιμοποιήσετε το Django με το Gunicorn
- Πως να χρησιμοποιήσετε το Django με το uWSGI
- Πως να χρησιμοποιήσετε το Django με τον Apache και το
mod_wsgi
- Πιστοποίηση της βάσης δεδομένων ενός Django χρήστη μέσω Apache
- Το
application
object - Παραμετροποιώντας το module των ρυθμίσεων
- Εφαρμόζοντας ένα WSGI middleware
- How to deploy with ASGI
- Ανεβάζοντας τα static files
- Αναφορά σφαλμάτων
- Λίστα ελέγχου για το Deployment