---
title: "Wdrażanie Django"
version: 2.2
locale: pl
source: https://docs.djangoproject.com/pl/2.2/howto/deployment/
canonical: https://djangodocs.dev/pl/2.2/howto/deployment/
---
# Wdrażanie 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.

- [Jak wdrażać z WSGI](/pl/2.2/howto/deployment/wsgi/)

  - [Jak używać Django z Gunicornem](/pl/2.2/howto/deployment/wsgi/gunicorn/)
  - [How to use Django with uWSGI](/pl/2.2/howto/deployment/wsgi/uwsgi/)
  - [Jak używać Django z Apache i `mod_wsgi`](/pl/2.2/howto/deployment/wsgi/modwsgi/)
  - [Authenticating against Django’s user database from Apache](/pl/2.2/howto/deployment/wsgi/apache-auth/)
  - [The `application` object](/pl/2.2/howto/deployment/wsgi/#the-application-object)
  - [Konfigurowanie modułu ustawień](/pl/2.2/howto/deployment/wsgi/#configuring-the-settings-module)
  - [Dołączanie WSGI middleware](/pl/2.2/howto/deployment/wsgi/#applying-wsgi-middleware)
- [Wdrażanie plików statycznych](/pl/2.2/howto/static-files/deployment/)

  - [Serwowanie plików statycznych na produkcji](/pl/2.2/howto/static-files/deployment/#serving-static-files-in-production)
  - [Czytaj więcej](/pl/2.2/howto/static-files/deployment/#learn-more)
- [Zgłaszanie błędów](/pl/2.2/howto/error-reporting/)

  - [Raporty emailowe](/pl/2.2/howto/error-reporting/#email-reports)
  - [Filtrowanie raportów błędów](/pl/2.2/howto/error-reporting/#filtering-error-reports)
- [Wdrożeniowa lista kontrolna](/pl/2.2/howto/deployment/checklist/)

  - [Wykonaj `manage.py check --deploy`](/pl/2.2/howto/deployment/checklist/#run-manage-py-check-deploy)
  - [Ustawienia krytyczne](/pl/2.2/howto/deployment/checklist/#critical-settings)
  - [Environment-specific settings](/pl/2.2/howto/deployment/checklist/#environment-specific-settings)
  - [HTTPS](/pl/2.2/howto/deployment/checklist/#https)
  - [Optymalizacje wydajności](/pl/2.2/howto/deployment/checklist/#performance-optimizations)
  - [Zgłaszanie błędów](/pl/2.2/howto/deployment/checklist/#error-reporting)

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