using ad-hoc certificates requires the cryptography library in Flask

2023년 08월 18일 by 진아사랑해

    using ad-hoc certificates requires the cryptography library in Flask 목차
반응형

Flask를 이용하여 간단한 서버를 만들고 있습니다.

HTTPS 동작을 확인하기 위해 인증서 없이 시험을 먼저 하고 있습니다.

문제 발생 및 해결

ssl_context="adhoc"으로 사용하였으나 예외가 발생하였습니다.

pyopenssl 라이브러리가 설치되지 않아서 에러가 발생했습니다.

 

pip install pyopenssl을 사용하여 라이브러리를 설치하여 주면 에러가 사라집니다.

 

좀 더 많은 내용을 원하시면 아래의 사이트를 참조하세요

https://blog.miguelgrinberg.com/post/running-your-flask-application-over-https

 

Running Your Flask Application Over HTTPS

While you work on your Flask application, you normally run the development web server, which provides a basic, yet functional WSGI complaint HTTP server. But eventually you will want to deploy your…

blog.miguelgrinberg.com

 

반응형