This commit is contained in:
30404 2024-07-13 13:20:55 +08:00
parent fb35c8235f
commit d42a806e58
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ module.exports = function(app) {
app.use(
'/api', // 如果请求路径匹配'/api',则进行代理
createProxyMiddleware({
target: 'http://127.0.0.1:5000', // 目标后端服务地址
target: 'http://127.0.0.1:8000', // 目标后端服务地址
changeOrigin: true,
})
);

View File

@ -452,6 +452,6 @@ def handle_disconnect():
if __name__ == '__main__':
socketio.run(app, host='0.0.0.0', port=5000 ,allow_unsafe_werkzeug=True, debug=False)
socketio.run(app, host='0.0.0.0', port=8000 ,allow_unsafe_werkzeug=True, debug=False)