作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Windows 机器上使用 uvicorn 在 Python 中运行 FastAPI 应用程序。当我要么
host
参数)from fastapi import FastAPI
import uvicorn
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}
if __name__ == '__main__':
uvicorn.run(app, port=8080, host='0.0.0.0')
当我在浏览器上访问 0.0.0.0:8080 时,收到一条错误消息,提示“无法访问此站点”。
netstat -ao |find /i "listening"
发生冲突并且 0.0.0.0:8080 未使用。
working_directory
└── app
├── gunicorn_conf.py
└── main.py
我的 gunicorn_conf.py 非常简单,只是尝试设置主机和端口:
host = "0.0.0.0"
port = "8080"
当我指定主机“0.0.0.0”时,如何使其工作?
最佳答案
当我在写上面的问题时,我找到了解决方案,并认为我会分享以防其他人遇到这个问题。为了让它工作,将“http://localhost:8080”而不是“http://0.0.0.0:8080”放入网络浏览器,它会正常工作。如果您通过 python requests 包等访问端点,这也有效。
关于python - 指定主机时,FastAPI/uvicorn 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60132045/
我是一名优秀的程序员,十分优秀!