[issue44169] Add HTTPS support to http.server

2021-05-20 Thread Ned Deily
Change by Ned Deily : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Make http.server support SSL ___ Python tracker ___ __

[issue44169] Add HTTPS support to http.server

2021-05-20 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: This is already proposed in issue 40990 for which I am working on a PR. -- nosy: +remi.lapeyre versions: +Python 3.11 -Python 3.9 ___ Python tracker ___

[issue44169] Add HTTPS support to http.server

2021-05-18 Thread Fred
New submission from Fred : The http.server module only supports HTTP. https://docs.python.org/3/library/http.server.html I propose that it should also support HTTPS. This would allow it to serve files that depend on features that are restricted to secure contexts. https://developer.mozilla.or