- 我这里很简单,测试的使用用runserver开一个127.0.0.1:8001的端口
- 然后nginx重定向/test 到8001端口
- 再重写一下url,将前面的/test去掉即可
- 然后生存环境还是uwsgi在跑,runserver可以正常运行起来后,再重启一下uwsgi即可。
location /test {
rewrite "^/test/(.*)$" /$1 break;
proxy_pass http://127.0.0.1:8001; # 重定向到127.0.0.1的8000端口
}