问题遇到的现象和发生背景
在布置python的flask项目到liunx系统的时候出现了问题
问题相关代码,请勿粘贴截图
文件件
```python
from flask import Flask, request
app = Flask(__name__)
@app.route("/")
def run():
return "nihao"
@app.route("/abd")
def run():
return "nihaoaaa"
if __name__ == '__main__':
app.run(host="0.0.0.0",port=5056)
uwsgi1.ini配置
[uwsgi]
socket = 0.0.0.0:5056
chdir =/root/ss/bb
wsgi-file = ceshiflask.py
callable = app
processes = 4
threads = 2
buffer-size = 65535
vacuum=true
master=true
nginx.conf 配置

###### 运行结果及报错内容
通过命令运行
1.nginx -c /www/server/nginx/conf/nginx.conf
2.uwsgi -d --ini uwsgi1.ini
访问http://114.115.221.250/
可以正常出现结果
###### 我的解答思路和尝试过的方法
更改python文件
```python
from flask import Flask, request
app = Flask(__name__)
@app.route("/")
def run():
return "nihao"
@app.route("/abd")
def run():
return "nihaoaaa"
if __name__ == '__main__':
app.run(host="0.0.0.0",port=5056)
nginx -c /www/server/nginx/conf/nginx.conf
uwsgi -d --ini uwsgi1.ini
正常启动
访问http://114.115.221.250/
可以正常出现结果
http://114.115.221.250/abd
出现
出现以下结果
Not Found
The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.
还有如果我需要布置两个flask项目应该如何配置。