FastAPI CORS 설정
2024. 4. 1. 00:23ㆍ파이썬/FastAPI
https://developer-itspjc.tistory.com/25
from starlette.middleware.cors import CORSMiddleware
app = FastAPI()
origins = [
"http://localhost:{port}"
]
app.add_middleware(
CORSMiddleware,
allow_origins=origins,
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"]
)
'파이썬 > FastAPI' 카테고리의 다른 글
FastAPI 이미지 만들기 (1) | 2024.09.16 |
---|---|
파일 다운로드 설정 (0) | 2024.06.28 |
FastAPI post 설정 (1) | 2024.03.16 |
FastAPI 설정 (0) | 2024.03.16 |