标签:配置 sock 服务器 ini web服务 启动 令行 通过 sgi
uwsgi是wsgi在linux中的一种实现,免去自己编写uwsgi服务器。
直接安装
apt install uwsgi
uwsgi --http:[port] --wsgi-file [filename]
保存在uwsgi.ini中
[uwsgi]
http = [port]
socket = ip:port # 以socket方式运行,指定连接地址和端口,该socket是uwsgi与web服务器对接的方式
wsgi-file = [filename]
processes = [unit] # 指定进程数
threads = [unit] # 指定线程数
# 通过shell启动
uwsgi uwsgi.ini
标签:配置 sock 服务器 ini web服务 启动 令行 通过 sgi
原文地址:https://www.cnblogs.com/ikct2017/p/9433851.html