gpt4 book ai didi

http - 一线 HTTPS 服务器

转载 作者:可可西里 更新时间:2023-11-01 15:13:22 25 4
gpt4 key购买 nike

有很多可用的单行 HTTP 服务器,例如

python

python -m SimpleHTTPServer 8000

ruby

ruby -run -ehttpd . -p8000

等等

是否有任何 1 行 HTTPS 服务器?如果他们生成自己的自签名证书,那就更好了。少量的行也可以。

最佳答案

ruby WEBrick documentation有一个section on HTTPS .我需要添加 DocumentRoot.start 并得出以下结果:

ruby -r webrick/https -e '
WEBrick::HTTPServer.new(
Port: 8000, DocumentRoot: ".",
SSLEnable: true, SSLCertName: [%w[CN localhost]]).start'

我用 Ruby 2.1.2 测试过。

关于http - 一线 HTTPS 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26790727/

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