Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 473 Bytes

deploy_server.md

File metadata and controls

36 lines (25 loc) · 473 Bytes

Introduction

uWSGI

You can run it with python ./main.py or uwsgi --ini uwsgi.ini

Requirements

pip install uwsgi

Config

--- file: uwsgi.ini ---

[uwsgi]
# Set the IP and Port.
http = 0.0.0.0:8092

# **Importance**: Need rewrite the value of chdir key
chdir = /root/SUSTechPOINTS

module = main:application
master = true
buffer-size = 65536
processes = 4
threads = 2

Run

uwsgi --ini uwsgi.ini