---
title: "Django 배포하기"
version: 2.2
locale: ko
source: https://docs.djangoproject.com/ko/2.2/howto/deployment/
canonical: https://djangodocs.dev/ko/2.2/howto/deployment/
---
# 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](/ko/2.2/howto/deployment/wsgi/)

  - [How to use Django with Gunicorn](/ko/2.2/howto/deployment/wsgi/gunicorn/)
  - [How to use Django with uWSGI](/ko/2.2/howto/deployment/wsgi/uwsgi/)
  - [How to use Django with Apache and `mod_wsgi`](/ko/2.2/howto/deployment/wsgi/modwsgi/)
  - [Authenticating against Django’s user database from Apache](/ko/2.2/howto/deployment/wsgi/apache-auth/)
  - [The `application` object](/ko/2.2/howto/deployment/wsgi/#the-application-object)
  - [Configuring the settings module](/ko/2.2/howto/deployment/wsgi/#configuring-the-settings-module)
  - [Applying WSGI middleware](/ko/2.2/howto/deployment/wsgi/#applying-wsgi-middleware)
- [정적 파일 배포하기](/ko/2.2/howto/static-files/deployment/)

  - [프로덕션에서 정적파일 제공하기](/ko/2.2/howto/static-files/deployment/#serving-static-files-in-production)
  - [Learn more](/ko/2.2/howto/static-files/deployment/#learn-more)
- [Error reporting](/ko/2.2/howto/error-reporting/)

  - [Email reports](/ko/2.2/howto/error-reporting/#email-reports)
  - [Filtering error reports](/ko/2.2/howto/error-reporting/#filtering-error-reports)
- [배포 전 체크리스트](/ko/2.2/howto/deployment/checklist/)

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

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