본문 바로가기
Coding/Python

[Python & FastAPI] ssl 키 적용하여 https 로 실행하는 방법 !!

by 포스트it 2023. 6. 16.
반응형

 

[Python & FastAPI] ssl 키 적용하여 https 로 실행하는 방법 !!

FastAPI로 파이썬 코드 실행시 uvicorn 이나 gunicorn으로 ssl 키 적용하여 실행하는 방법 입니다.

 

# uvicorn 사용시
$ uvicorn main:app --host 0.0.0.0 --port 5000 --ssl-keyfile=./key.pem --ssl-certfile=./cert.pem

# gunicorn 사용시
$ gunicorn --keyfile=./key.pem --certfile=./cert.pem -k uvicorn.workers.UvicornWorker main:app --bind 0.0.0.0:5000
728x90
반응형

댓글