1. nginx를 설치하세요 이메일(imap/pop3) 프록시 서버를 사용하고 bsd와 유사한 프로토콜로 배포됩니다. 그 특징은 더 적은 메모리를 차지하고 강력한 동시성 기능을 가지고 있다는 것입니다. 실제로 nginx의 동시성 기능은 동일한 유형의 웹 서버에서 더 나은 성능을 발휘합니다.
nginx는 현재 매우 인기 있는 웹 서버이기도 합니다. 또한 django를 배포하는 데 사용하는 방법에 대해 간략하게 소개하겠습니다.
nginx 공식 웹사이트:
우분투 콘솔(ctrl+alt+t)을 열고 우분투 웨어하우스를 사용하여 설치하세요.
fnngj@ubuntu:~$ sudo apt-get install nginx #安装
nginx 시작:
fnngj@ubuntu:~$ /etc/init.d/nginx start #启动 fnngj@ubuntu:~$ /etc/init.d/nginx stop #关闭 fnngj@ubuntu:~$ /etc/init.d/nginx restart #重启
nginx의 기본 포트 번호를 수정하고 /etc/nginx/nginx.conf 파일을 열고 포트 번호를 수정합니다.
server { listen 8088; # 修改端口号 server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; }
파일의 대략 36번째 줄에서 기본 포트 번호 80을 8088과 같은 다른 포트 번호로 변경합니다. 기본 포트 번호 80은 다른 응용 프로그램에서 쉽게 사용할 수 있기 때문입니다.
그런 다음 위 명령을 통해 nginx를 다시 시작하세요. 방문: http://127.0.0.1:8088/
위 그림이 나타나면 nginx가 성공적으로 시작된 것입니다. W 2: UWSGI 설치
PIP를 통해 UWSGI를 설치하세요.
root@ubuntu:/etc# python3 -m pip install uwsgi
def application(env, start_response): start_response('200 ok', [('content-type','text/html')]) return [b"hello world"]
fnngj@ubuntu:~/pydj$ uwsgi --http :8001 --wsgi-file test.py
다음으로 django와 uwsgi 간의 연결을 구성합니다. 여기서 내 django 프로젝트의 예상 위치는 다음과 같습니다: /home/fnngj/pydj/myweb
코드를 복사하세요. 코드는 다음과 같습니다:
uwsgi --http :8001 --chdir /home/fnngj/pydj/myweb / -- wsgi-file myweb/wsgi.py --master --processes 4 --threads 2 --stats 127.0.0.1:9191
공통 옵션:
processes : 활성화됨 프로세스 수
workers: 시작된 프로세스 수는 프로세스와 동일합니다(공식 웹사이트에서는 지정된 수의 작업자/프로세스를 생성한다고 나와 있습니다) chdir: 실행 디렉터리를 지정합니다(앱이 로드되기 전에 지정된 디렉터리에 대한 chdir). wsgi-file: 로드 wsgi-file 입력(.wsgi 파일 로드) stats: 지정된 주소의 통계 서버 활성화(지정된 주소의 통계 서버 활성화) threads: 스레드를 실행합니다. 길의 존재로 인해 이것은 정말 쓸모가 없다고 생각합니다. (지정된 스레드 수를 사용하여 각 작업자를 사전 스레드 모드로 실행) master: 마스터 프로세스가 존재하도록 허용합니다(마스터 프로세스 활성화) daemonize: 프로세스를 백그라운드에서 실행하고 지정된 로그 파일 또는 UDP 서버에 기록합니다. (uwsgi를 데몬화함). 실제로 가장 일반적으로 사용되는 방법은 실행 중인 기록을 로컬 파일로 출력하는 것입니다. pidfile: pid 파일의 위치를 지정하고 메인 프로세스의 pid 번호를 기록합니다. vacuum: 서버 종료 시 자동으로 환경 정리, unix 소켓 파일 및 pid 파일 삭제(생성된 파일/소켓 모두 제거 시도)Three, nginx+uwsgi+django 다음으로 세 가지를 결합하고 싶습니다. 먼저 프로젝트에 필요한 파일을 나열해 보겠습니다.
myweb/ ├── manage.py ├── myweb/ │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── myweb_uwsgi.ini
django를 통해 myweb 프로젝트를 생성하면 myweb 하위 디렉터리에 wsgi.py 파일이 생성됩니다. 따라서 myweb_uwsgi.ini 구성 파일만 생성하면 됩니다. 물론 uwsgi는 xml, ini 등과 같은 여러 유형의 구성 파일을 지원합니다. 여기서는 ini 유형 구성을 사용하십시오.
# myweb_uwsgi.ini file [uwsgi] # django-related settings socket = :8000 # the base directory (full path) chdir = /home/fnngj/pydj/myweb # django s wsgi file module = myweb.wsgi # process-related settings # master master = true # maximum number of worker processes processes = 4 # ... with appropriate permissions - may be needed # chmod-socket = 664 # clear environment on exit vacuum = true
이 구성은 실제로 이전 섹션의 wsgi 명령과 여러 매개변수를 통해 문서화하는 것과 동일합니다. socket 프로젝트 실행을 위한 포트 번호를 지정합니다.
chdir은 프로젝트의 디렉터리를 지정합니다.
모듈 myweb.wsgi는 이런 식으로 이해하면 됩니다. myweb_uwsgi.ini 파일의 경우, 같은 레벨에 myweb 디렉터리가 있고, 이 디렉터리에 wsgi.py 파일이 있습니다.
다른 매개변수에 대해서는 이전 섹션의 매개변수 소개를 참조하세요.
接下来,切换到myweb项目目录下,通过uwsgi命令读取myweb_uwsgi.ini文件启动项目。
fnngj@ubuntu:~$ cd /home/fnngj/pydj/myweb/ fnngj@ubuntu:~/pydj/myweb$ uwsgi --ini myweb_uwsgi.ini [uwsgi] getting ini configuration from myweb_uwsgi.ini *** starting uwsgi 2.0.12 (32bit) on [sat mar 12 13:05:06 2016] *** compiled with version: 4.8.4 on 26 january 2016 06:14:41 os: linux-3.19.0-25-generic #26~14.04.1-ubuntu smp fri jul 24 21:18:00 utc 2015 nodename: ubuntu machine: i686 clock source: unix detected number of cpu cores: 2 current working directory: /home/fnngj/pydj/myweb detected binary path: /usr/local/bin/uwsgi !!! no internal routing support, rebuild with pcre support !!! chdir() to /home/fnngj/pydj/myweb your processes number limit is 15962 your memory page size is 4096 bytes detected max file descriptor number: 1024 lock engine: pthread robust mutexes thunder lock: disabled (you can enable it with --thunder-lock) uwsgi socket 0 bound to tcp address :8000 fd 3 python version: 3.4.3 (default, oct 14 2015, 20:37:06) [gcc 4.8.4] *** python threads support is disabled. you can enable it with --enable-threads *** python main interpreter initialized at 0x8b52dc0 your server socket listen backlog is limited to 100 connections your mercy for graceful operations on workers is 60 seconds mapped 319920 bytes (312 kb) for 4 cores *** operational mode: preforking *** wsgi app 0 (mountpoint='') ready in 1 seconds on interpreter 0x8b52dc0 pid: 7158 (default app) *** uwsgi is running in multiple interpreter mode *** spawned uwsgi master process (pid: 7158) spawned uwsgi worker 1 (pid: 7160, cores: 1) spawned uwsgi worker 2 (pid: 7161, cores: 1) spawned uwsgi worker 3 (pid: 7162, cores: 1) spawned uwsgi worker 4 (pid: 7163, cores: 1)
注意查看uwsgi的启动信息,如果有错,就要检查配置文件的参数是否设置有误。
再接下来要做的就是修改nginx.conf配置文件。打开/etc/nginx/nginx.conf文件,添加如下内容。
…… server { listen 8099; server_name 127.0.0.1 charset utf-8; access_log /var/log/nginx/myweb_access.log; error_log /var/log/nginx/myweb_error.log; client_max_body_size 75m; location / { include uwsgi_params; uwsgi_pass 127.0.0.1:8000; uwsgi_read_timeout 2; } location /static { expires 30d; autoindex on; add_header cache-control private; alias /home/fnngj/pydj/myweb/static/; } } ……
listen 指定的是nginx代理uwsgi对外的端口号。
server_name 网上大多资料都是设置的一个网址(例,www.example.com),我这里如果设置成网址无法访问,所以,指定的到了本机默认ip。
在进行配置的时候,我有个问题一直想不通。nginx到底是如何uwsgi产生关联。现在看来大概最主要的就是这两行配置。
include uwsgi_params;
uwsgi_pass 127.0.0.1:8000;
include 必须指定为uwsgi_params;而uwsgi_pass指的本机ip的端口与myweb_uwsgi.ini配置文件中的必须一直。
现在重新启动nginx,翻看上面重启动nginx的命令。然后,访问:http://127.0.0.1:8099/
通过这个ip和端口号的指向,请求应该是先到nginx的。如果你在页面上执行一些请求,就会看到,这些请求最终会转到uwsgi来处理。
위 내용은 우분투 기반 Nginx를 통해 Django를 배포하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!