gpt4 book ai didi

生产环境中的 Python SimpleHTTPServer

转载 作者:太空狗 更新时间:2023-10-29 21:12:02 27 4
gpt4 key购买 nike

我想用 Python 提供静态文件。 Python 3 http.server 是否适合在生产中使用?如果不是,为什么不呢?我有什么选择?

最佳答案

引用文档 https://docs.python.org/3/library/http.server.html#module-http.server

Warning: http.server is not recommended for production. It only implements basic security checks.

首先,您根本不需要 python 来提供静态文件。只需使用真正的 HTTP 服务器,如 Apache 或 NGinx。如果你想要一个快速的解决方案,只需寻找一个带有适合你需要的预配置图像的 docker 容器。这是 NGinx . docker绝对是必备的您不会后悔学习的工具。

$ docker run --name mysite-nginx -v /mysite:/usr/share/nginx/html:ro -p 80:80 -d nginx

关于生产环境中的 Python SimpleHTTPServer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33392293/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com