ASH84

Software Engineer/Developer, co-founder of Payhere. Ex-Banksalad. Intereseted in iteroperability, bootstrap company, writting.

uwsgi 기본 사용법 정리

created:2015-03-10
updated:2016-08-13
edit

개요

설치

$ pip install uwsgi 

flask 와 연동

uwsgi –http 127.0.0.1:3031 –wsgi-file ./myflaskapp.py –callable app –processes 4 –threads 2 –stats 127.0.0.1:9191  

`

ini 파일로 간편화 하기 

기동

$ uwsgi myflaskapp.ini & 

정지

$ uwsgi –stop /tmp/project-master.pid

#dev  #FLASK  #INI  #uWSGI  #uwsgi usage  #uwsgi 사용법