gpt4 book ai didi

python - 如何在使用 python 的 HTTPServer 时设置 DocumentRoot?

转载 作者:太空狗 更新时间:2023-10-30 00:00:05 25 4
gpt4 key购买 nike

我有以下代码作为我的 python 服务器:

#!/usr/bin/python3
from http.server import HTTPServer, CGIHTTPRequestHandler

port = 8080
host_name = "localhost"
httpd = HTTPServer((host_name, port), CGIHTTPRequestHandler)
print("server started, to quit press <ctrl-c>")
httpd.serve_forever()

如何设置服务器从中提供页面的 DocumentRoot。

最佳答案

内置 CGIHTTPRequestHandler类从当前工作目录提供服务,该目录通常是您调用 Python 的目录。

This class is used to serve either files or output of CGI scripts from the current directory and below.

您可以使用 os.chdir()更改当前工作目录。

关于python - 如何在使用 python 的 HTTPServer 时设置 DocumentRoot?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11419572/

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