0.总体结构
fage@iZ94s1sibj6Z:/etc/nginx$ tree
├── conf.d
│ └── vhost.conf
├── fastcgi_params
├── koi-utf
├── koi-win
├── mime.types
├── naxsi_core.rules
├── naxsi.rules
├── naxsi-ui.conf.1.4.1
├── nginx.conf
├── proxy_params
├── scgi_params
├── sites-available
│ └── default
├── sites-enabled
│ ├── default -> /etc/nginx/sites-available/default
│ └── lingli_nginx.conf -> /home/fage/lingli_bak/lingli_nginx.conf
├── uwsgi_params
└── win-utf
1.nginx.conf
该文件我们不要轻易改它,一般我们也不需要改它,设计到Nginx性能调优的时候才会用到,对于一些ip,端口号的设置,尽量放到conf.d目录下或者sites-enabled或者sites-available,sites-enabled一般放置软连接。
#定义Nginx运行的用户和用户组
user www-data www-data;
#nginx进程数,建议设置为等于CPU总核心数,也可以设置为auto
worker_processes 4;
#进程文件
pid /run/nginx.pid;
可以看到www-data作为非登录用户
root@iZ94s1sibj6Z:~# cat /etc/passwd | grep www-data
www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
如果系统的中的其他用户想使用Nginx,最好加到www-data用户组中
events模块的设置如下:
events {
worker_connections 768;
# multi_accept on;
# use epoll;
}
**worker_connections **设置可由一个worker进程同时打开的最大连接数。如果设置了上面提到的worker_rlimit_nofile,我们可以将这个值设得很高。
记住,最大客户数也由系统的可用socket连接数限制(~ 64K),所以设置不切实际的高没什么好处。
**multi_accept **告诉nginx收到一个新连接通知后接受尽可能多的连接。
**use *设置用于复用客户端线程的轮询方法。如果你使用Linux 2.6+,你应该使用epoll。如果你使用BSD,你应该使用kqueue。
(值得注意的是如果你不知道Nginx该使用哪种轮询方法的话,它会选择一个最适合你操作系统的)
3.Django和Nginx对接
从nginx目录复制uwsgi_params到当前工程目录
新建文件如下/home/fage/lingli_bak/lingli_nginx.conf
# lingli_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:8201; # for a web port socket (we'll use this first)
}
# configuration of the server
server {
# the port your site will be served on
listen 8200;
# the domain name it will serve for
server_name .lingli.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 /home/fage/lingli_bak/media; # your Django project's media files - amend as required
}
location /static {
alias /home/fage/lingli_bak/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 /home/fage/lingli_bak/uwsgi_params; # the uwsgi_params file you installed
}
}
网友评论