django+uwsgi+nginx部署配二——socket部署
-
- 之前的配置请看原文
- 项目结构图
- nginx 配置文件
- uwsgi 配置文件
- 结束语
之前写过一篇文章,是关于django项目部署的=>原文链接然后昨天发现有部署的项目一些功能不能用,于是检查了一下,发现uwsgi与nginx两者衔接都是http方式的,于是花了些时间在本地开发环境中将其改进部署看出来。
之前的配置请看原文
传送门<<==请戳我
项目结构图
说明:
bbb.txt是环境包文件
nginxt.conf是nginx配置,至于为什么放这里,项目太多,我怕搞混,启动的时候加一个 -c就搞定的事情就不要麻烦了
uwsgi.ini uwsgi配置uwsgi_params,这玩意儿我得重点说一下,我自己安装的nginx后发现nginx/conf文件夹下面没有这个文件,估计我又踩坑了。报错的地方忘记截图了。没有之后可以自己建一个或者下载一个。
github uwsgi_params 下载传送门
或者复制下面的代码自己新建一个文件uwsgi_param QUERY_STRING $query_string;
uwsgi_param REQUEST_METHOD $request_method;
uwsgi_param CONTENT_TYPE $content_type;
uwsgi_param CONTENT_LENGTH $content_length;uwsgi_param REQUEST_URI $request_uri;
uwsgi_param PATH_INFO $document_uri;
uwsgi_param DOCUMENT_ROOT $document_root;
uwsgi_param SERVER_PROTOCOL $server_protocol;
uwsgi_param REQUEST_SCHEME $scheme;
uwsgi_param HTTPS $https if_not_empty;uwsgi_param REMOTE_ADDR $remote_addr;
uwsgi_param REMOTE_PORT $remote_port;
uwsgi_param SERVER_PORT $server_port;
uwsgi_param SERVER_NAME $server_name;
nginx 配置文件
worker_processes auto;
pid /run/nginx.pid;
#include /etc/nginx/modules-enabled/*.conf;events {worker_connections 768;# multi_accept on;
}http {## # Basic Settings## sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048;# server_tokens off;# server_names_hash_bucket_size 64;# server_name_in_redirect off;include /etc/nginx/mime.types;default_type application/octet-stream;## # SSL Settings## ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLEssl_prefer_server_ciphers on; ## # Logging Settings## access_log /home/hhyq/.log/nginx_access.logerror_log /home/hhyq/.log/nginx_error.log;## # Gzip Settings## gzip on; # gzip_vary on;# gzip_proxied any;# gzip_comp_level 6;# gzip_buffers 16 8k;# gzip_http_version 1.1;# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;### Virtual Host Configs###include /etc/nginx/conf.d/*.conf;#include /etc/nginx/sites-enabled/*;upstream django {# server unix:///path/to/your/mysite/mysite.sock; # for a file socketserver 127.0.0.1:8000; # for a web port socket (we'll use this first)}server {listen 80;server_name 1;autoindex on; #是否允许访问目录location / {#proxy_pass http://127.0.0.1:8000; uwsgi_pass django;include /home/hhyq/Desktop/kzjzserver/uwsgi_params; # 你存放的uwsgi_params路径 不能出错。不然连不上} location /static {alias /home/hhyq/static; # 1. alias方式配置文件夹}}
}#mail {
# # See sample authentication script at:
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
#
# # auth_http localhost/auth.php;
# # pop3_capabilities "TOP" "USER";
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
# server {
# listen localhost:110;
# protocol pop3;
# proxy on;
# }
#
# server {
# listen localhost:143;
# protocol imap;
# proxy on;
# }
#}
uwsgi 配置文件
[uwsgi]
socket = 127.0.0.1:8000
chdir = /home/hhyq/Desktop/kzjzserver
wsgi-file = kzjzserver/wsgi.py
#monitor uwsgi status 通过该端口可以监控 uwsgi 的负载情况
stats = 127.0.0.1:9000
#设置一个请求的超时时间(秒),如果一个请求超过了这个时间,则请求被丢弃
harakiri = 60
#当一个请求被harakiri杀掉会,会输出一条日志
harakiri-verbose = true
#开启内存使用情况报告
memory-report = true
#设置平滑的重启(直到处理完接收到的请求)的长等待时间(秒)
reload-mercy = 20
#设置工作进程使用虚拟内存超过N MB就回收重启
reload-on-as= 1024
#自动给进程命名
auto-procname = true
#为进程指定前缀
procname-prefix-spaced = jzjz-ms
#设置工作进程每处理N个进程就会被回收重启
max-requests=500000
#设置工作进程使用物理内存超过N MB就回收重启
reload-on-rss=512
#设置socket超时时间,默认4秒
socket-timeout=10
#限制http请求体的大小(Bytes)
limit-post=4096
# clear environment on exit
vacuum = true
#不记录request日志,只记录错误日志
disable-logging = true
#将日志打印到syslog上
log-syslog = true
# 后台运行,并输出日志
daemonize = /home/hhyq/.log/uwsgi.log
#在经过sec秒的不活跃状态的进程会被销毁(进入了cheap模式),并最少保留cheaper指定的进程数
idle = 3600
# 最大工作进程数
processes = 100
#在每个辅助进程中启动的线程数
threads = 10
#一个高阶的cheap模式,在启动的时候只会分配n个工作进程,并使用自适应算法启动新的进程
cheaper = 10
结束语
感觉这篇博客还是有点水,不过之前都把坑踩完了,这次就是修改一下nginx与uwsgi链接方式而已,所以信息量不多,最多的估计也就是nginx与uwsgi的配置文件了。觉得帖子有问题留言,需要帮助也留言。同时也感谢各位大佬们的帖子。