---
title: "Deploying Django"
version: 2.2
locale: es
source: https://docs.djangoproject.com/es/2.2/howto/deployment/
canonical: https://djangodocs.dev/es/2.2/howto/deployment/
---
# Deploying Django

Django’s chock-full of shortcuts to make Web developer’s 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.

- [How to deploy with WSGI](/es/2.2/howto/deployment/wsgi/)

  - [How to use Django with Gunicorn](/es/2.2/howto/deployment/wsgi/gunicorn/)
  - [How to use Django with uWSGI](/es/2.2/howto/deployment/wsgi/uwsgi/)
  - [Como usar Django con Apache y `mod_wsgi`](/es/2.2/howto/deployment/wsgi/modwsgi/)
  - [Authenticating against Django’s user database from Apache](/es/2.2/howto/deployment/wsgi/apache-auth/)
  - [The `application` object](/es/2.2/howto/deployment/wsgi/#the-application-object)
  - [Configuring the settings module](/es/2.2/howto/deployment/wsgi/#configuring-the-settings-module)
  - [Applying WSGI middleware](/es/2.2/howto/deployment/wsgi/#applying-wsgi-middleware)
- [Deploying static files](/es/2.2/howto/static-files/deployment/)

  - [Serving static files in production](/es/2.2/howto/static-files/deployment/#serving-static-files-in-production)
  - [Learn more](/es/2.2/howto/static-files/deployment/#learn-more)
- [Error reporting](/es/2.2/howto/error-reporting/)

  - [Reportes de correo electrónico](/es/2.2/howto/error-reporting/#email-reports)
  - [Filtering error reports](/es/2.2/howto/error-reporting/#filtering-error-reports)
- [Deployment checklist](/es/2.2/howto/deployment/checklist/)

  - [Run `manage.py check --deploy`](/es/2.2/howto/deployment/checklist/#run-manage-py-check-deploy)
  - [Critical settings](/es/2.2/howto/deployment/checklist/#critical-settings)
  - [Environment-specific settings](/es/2.2/howto/deployment/checklist/#environment-specific-settings)
  - [HTTPS](/es/2.2/howto/deployment/checklist/#https)
  - [Performance optimizations](/es/2.2/howto/deployment/checklist/#performance-optimizations)
  - [Error reporting](/es/2.2/howto/deployment/checklist/#error-reporting)

If you’re new to deploying Django and/or Python, we’d recommend you try
[mod\_wsgi](/es/2.2/howto/deployment/wsgi/modwsgi/) first. In most cases it’ll be
the easiest, fastest, and most stable deployment choice.
