码迷,mamicode.com
首页 > 其他好文 > 详细

uwsgi

时间:2018-08-06 22:42:24      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:配置   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

uwsgi

标签:配置   sock   服务器   ini   web服务   启动   令行   通过   sgi   

原文地址:https://www.cnblogs.com/ikct2017/p/9433851.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!