比较喜欢flask这个框架,轻便好用。
在搭建web时,有时候需要用到https.作者在搭建IOS分发的时候,itms-services 就需要https.
本文就以自己搭建的做个说明。
Before starting a server with SSL, you need to create private key and a certificate.
1) .key –> private key
2) .ct –>Self signed certificate
eg: 在主路径下建一个文件夹来存认证文件1
openssl req -x509 -sha256 -nodes -days 365 -newkey rsa:2048 -keyout anderson.key -out anderson.crt
代码应该是这样子的:
1 | from flask import Flask |
运行起来:
1 | * Running on https://0.0.0.0:5000/ (Press CTRL+C to quit) |
页面打开,就有https了。