nginx 와 uWSGI 를 기반 으로 Ubuntu 에 Django 를 배치 합 니 다.

13812 단어 PythonWeb
다음으로 전송:http://www.jianshu.com/p/e6ff4a28ab5a
nginx 와 uWSGI 를 기반 으로 Ubuntu 에 Django 를 배치 합 니 다.
본문 은 주로 uWSGI 의 문 서 를 참고 한다.
1. nginx
설치 하 다.
sudo apt-get install nginx

시작, 정지, 재 부팅
sudo /etc/init.d/nginx start
sudo /etc/init.d/nginx stop
sudo /etc/init.d/nginx restart

혹은
sudo service nginx start
sudo service nginx stop
sudo service nginx restart

2. uWSGI 설치
python 의 pip 로 설치 하 는 것 이 가장 간단 합 니 다:
apt-get install python-dev #     ,          
pip install uwsgi

3. uWSGI 와 nginx 기반 Django 배치
1. 원리
the web client <-> the web server(nginx) <-> the socket <-> uwsgi <-> Django

2. 기본 테스트
uWSGI 정상 여 부 를 테스트 합 니 다.
django 프로젝트 의 루트 디 렉 터 리 에 test. py 파일 을 만 들 고 소스 코드 를 다음 과 같이 추가 합 니 다.
# test.py
def application(env, start_response):
    start_response('200 OK', [('Content-Type','text/html')])
    return ["Hello World"] # python2
    #return [b"Hello World"] # python3

그리고 uWSGI 를 실행 하 세 요:
uwsgi --http :8000 --wsgi-file test.py

매개 변수 의미:
  • http :8000: http 프로 토 콜 사용, 8000 포트
  • wsgi-file test. py: 지정 한 파일 test. py
  • 불 러 오기
    아래 url 을 열 면 브 라 우 저 에 표시 되 어야 합 니 다 hello world
    http://example.com:8000

    만약 표시 가 정확 하 다 면 다음 세 부분 이 원활 하 다 는 것 을 설명 합 니 다.
    the web client <-> uWSGI <-> Python

    Django 프로젝트 의 정상 여 부 를 테스트 합 니 다.
    우선 프로젝트 자체 가 정상 인지 확인 하 십시오.
    python manage.py runserver 0.0.0.0:8000

    문제 가 없 으 면 uWSGI 를 사용 하여 procject 를 끌 어 올 립 니 다.
    uwsgi --http :8000 --module mysite.wsgi
  • module mysite.wsgi: wsgi 모듈 불 러 오기
  • 프로젝트 가 정상적으로 끌 어 올 릴 수 있다 면 다음 과 같은 부분 이 통 하 는 것 을 설명 합 니 다.
    the web client <-> uWSGI <-> Django

    3. nginx 설정
    nginx 를 설치 한 후 정상적으로 열 수 있다 면 http://hostname 다음 부분 이 원활 하 다 는 것 을 설명 합 니 다.
    the web client <-> the web server

    nginx 설정 추가
  • 파일 을 프로젝트 폴 더 에 복사 합 니 다.uwsgi_params 파일 은 uwsgi_params 디 렉 터 리 아래 에서 도 이 페이지 에서 다운로드 할 수 있다
  • 프로젝트 폴 더 에 파일 만 들 기 /etc/nginx/ 다음 내용 을 입력 하고 수정 합 니 다.
  • # mysite_nginx.conf
    
    # the upstream component nginx needs to connect to
    upstream django {
        # server unix:///path/to/your/mysite/mysite.sock; # for a file socket
        server 127.0.0.1:8001; # for a web port socket (we'll use this first)
    }
    # configuration of the server
    server {
        # the port your site will be served on
        listen      8000;
        # the domain name it will serve for
        server_name .example.com; # substitute your machine's IP address or FQDN
        charset     utf-8;
    
        # max upload size
        client_max_body_size 75M;   # adjust to taste
    
        # Django media
        location /media  {
            alias /path/to/your/mysite/media;  # your Django project's media files - amend as required
        }
    
        location /static {
            alias /path/to/your/mysite/static; # your Django project's static files - amend as required
        }
    
        # Finally, send all non-media requests to the Django server.
        location / {
            uwsgi_pass  django;
            include     /path/to/your/mysite/uwsgi_params; # the uwsgi_params file you installed
        }
    }

    이 configuration 파일 은 nginx 에 게 파일 시스템 에서 미디어 와 static 파일 을 서비스 로 끌 어 올 리 는 동시에 django 의 request 를 알려 줍 니 다.mysite_nginx.conf 디 렉 터 리 에 이 파일 의 연결 을 만 들 고 nginx 가 사용 할 수 있 도록 합 니 다.
    sudo ln -s ~/path/to/your/mysite/mysite_nginx.conf /etc/nginx/sites-enabled/

    static 파일 배치
    django 의 setting 파일 에 다음 줄 을 추가 합 니 다:
    STATIC_ROOT = os.path.join(BASE_DIR, "static/")

    그리고 실행:
    python manage.py collectstatic

    테스트 nginx
    먼저 nginx 서 비 스 를 다시 시작 합 니 다.
    sudo /etc/init.d/nginx restart

    그리고 미디어 파일 이 정상적으로 올 라 갔 는 지 확인 하 십시오. 디 렉 터 리 /etc/nginx/sites-enabled 에 파일 /path/to/your/project/project/media directory 을 추가 한 다음 에 접근 하 십시오.http://example.com:8000/media/media.png , 성공 후 다음 테스트 를 진행 합 니 다.
    4.nginx and uWSGI and test.py
    다음 코드 테스트 를 실행 하면 nginx 를 페이지 에 표시 할 수 있 습 니까? meida.png
    uwsgi --socket :8001 --wsgi-file test.py

    방문 하 다.http://example.com:8000 , 표시 hello, world 하면 다음 부분 이 원활 합 니까?
    the web client <-> the web server <-> the socket <-> uWSGI <-> Python

    TCP port 대신 UNIX socket 사용 하기hello world 에 대해 다음 과 같이 수정 합 니 다.
    server unix:///path/to/your/mysite/mysite.sock; # for a file socket
    # server 127.0.0.1:8001; # for a web port socket (we'll use this first)

    nginx 를 다시 시작 하고 실행 mysite_nginx.conf
    uwsgi --socket mysite.sock --wsgi-file test.py

    열다http://example.com:8000/ 성공 여부
    성공 하지 못 하면:
    nginx error log (/ var / log / nginx / error. log) 를 검사 합 니 다.다음 과 같은 오류 가 발생 하면:
    connect() to unix:///path/to/your/mysite/mysite.sock failed (13: Permission
    denied)

    socket 권한 추가 다시 실행:
    uwsgi --socket mysite.sock --wsgi-file test.py --chmod-socket=666 # (very permissive)

    or
    uwsgi --socket mysite.sock --wsgi-file test.py --chmod-socket=664 # (more sensible)

    5.Running the Django application with uswgi and nginx
    위 에 모든 것 이 정상 으로 표시 되면 아래 명령 은 django application 을 끌 어 올 릴 수 있 습 니 다.
    uwsgi --socket mysite.sock --module mysite.wsgi --chmod-socket=664

    Configuring uWSGI to run with a .ini file
    매번 위의 명령 을 실행 하여 django application 을 끌 어 올 리 는 것 은 정말 번 거 롭 습 니 다. ini 파일 을 사용 하면 작업 을 간소화 할 수 있 습 니 다. 방법 은 다음 과 같 습 니 다.
    응용 프로그램 디 렉 터 리 에 파일 uWSGI 을 만 들 고 다음 내용 을 입력 하고 수정 합 니 다.
    # mysite_uwsgi.ini file
    [uwsgi]
    
    # Django-related settings
    # the base directory (full path)
    chdir           = /path/to/your/project
    # Django's wsgi file
    module          = project.wsgi
    # the virtualenv (full path)
    home            = /path/to/virtualenv
    
    # process-related settings
    # master
    master          = true
    # maximum number of worker processes
    processes       = 10
    # the socket (use the full path to be safe
    socket          = /path/to/your/project/mysite.sock
    # ... with appropriate permissions - may be needed
    # chmod-socket    = 664
    # clear environment on exit
    vacuum          = true

    이제 다음 명령 만 실행 하면 django application 을 끌 어 올 릴 수 있 습 니 다.
    uwsgi --ini mysite_uwsgi.ini # the --ini option is used to specify a file

    Make uWSGI startup when the system boots
    파일 편집 mysite_uwsgi.ini, 이 줄 코드 에 다음 내용 을 추가 하기 전에 /etc/rc.local:
    /usr/local/bin/uwsgi --socket /path/to/mysite.sock --module /path/to/mysite.wsgi --chmod-socket=666

    uWSGI 의 더 많은 설정
    env = DJANGO_SETTINGS_MODULE=mysite.settings # set an environment variable
    pidfile = /tmp/project-master.pid # create a pidfile
    harakiri = 20 # respawn processes taking more than 20 seconds
    limit-as = 128 # limit the project to 128 MB
    max-requests = 5000 # respawn processes after serving 5000 requests
    daemonize = /var/log/uwsgi/yourproject.log # background the process & log

    좋은 웹페이지 즐겨찾기