https://www.digitalocean.com/community/tutorials/how-to-serve-django-applications-with-uwsgi-and-nginx-on-ubuntu-16-04
在项目根目录(manage.py的目录)下执行启动命令,注意最后的 static参数,没有的时候按照网上的方法一直没有样式
uwsgi --http :8002 --chdir /home/guchen/python/www/for_test/AutoTestSite/ --wsgi-file AutoTestSite/wsgi.py --master --processes 4 --threads 2 --stats 127.0.0.1:8003 --static-map=/static=/home/guchen/python/www/for_test/AutoTestSite/static2
原文:https://www.cnblogs.com/gcgc/p/10128873.html