发布时间:2019-08-02 11:14:11编辑:auto阅读(1332)
此文版权属于作者所有,任何人、媒体或者网站转载、借用都必须征得作者本人同意!
#!/usr/bin/env python
# taken from https://gist.github.com/dergachev/7028596
#
# generate server.xml with the following command:
# openssl req -new -x509 -keyout https_svr_key.pem -out https_svr_key.pem -days 3650 -nodes
#
# run as follows:
# python https_svr.py
#
# then in your browser, visit:
# https://localhost:4443
#
import BaseHTTPServer
import SimpleHTTPServer
import os
import socket
import ssl
script_home = os.path.dirname(os.path.abspath(__file__))
ip = [(s.connect(('8.8.8.8', 53)), s.getsockname()[0], s.close()) \
for s in [socket.socket(socket.AF_INET, socket.SOCK_DGRAM)]][0][1]
port = 4443
def main():
print ("simple https server, address:%s:%d, document root:%s" % (ip, port, script_home))
httpd = BaseHTTPServer.HTTPServer(('0.0.0.0', port), SimpleHTTPServer.SimpleHTTPRequestHandler)
httpd.socket = ssl.wrap_socket(httpd.socket, certfile='./https_svr_key.pem', server_side=True)
httpd.serve_forever()
if __name__ == '__main__':
os.chdir(script_home)
main()
上一篇: Python 中list ,set,di
下一篇: 基于python的-PIL定位截图
47492
45793
36792
34323
28959
25597
24443
19610
19111
17632
5464°
6048°
5570°
5637°
6573°
5376°
5377°
5884°
5854°
7170°