fastAPI使用https
在main.py中定义证书路径
from fastapi import FastAPI app = FastAPI(ssl_keyfile="./key.key", ssl_certfile="./cert.pem")
启动uvicorn时带上证书参数(其中--host '0.0.0.0'可以允许域名访问)
(env)uvicorn main:app --port 8000 --host '0.0.0.0' --ssl-keyfile ./key.key --ssl-certfile ./cert.pem