在liunx中环境中 对于nginx来说: 1.先安装nginx sudo apt-get install nginx 2.启动nginx服务 sudo /etc/init.d/nginx restart 3.启动成功之后,可以打开浏览器进行验证,访问地址:127.0.0.1:80 4.对于nginx来说,存储html路径为:/var/www/html/ 对于uwsgi来说: 1.进行安装: sudo pip3 install uwsgi 2.验证 uwsgi --http :9998 --ch…