Page tree
Skip to end of metadata
Go to start of metadata

有时候临时需要架设一个静态web服务器,而又不想去配置 nginx,这时候可以通过 python 的 SimpleHTTPServer 来实现:

cd /path/to/web
python -m SimpleHTTPServer 8888

# ipv6
python -c "import socket,SocketServer,CGIHTTPServer;SocketServer.TCPServer.address_family=socket.AF_INET6;CGIHTTPServer.test()"


Python 3 可以使用:

python3 -m http.server



  • No labels
Write a comment...