List with a ton of one-liner web servers in various languages
HTTP
python -m SimpleHTTPServer 8000
python3 -m http.server 8000
HTTPS
ruby -r webrick/https -e '
WEBrick::HTTPServer.new(
Port: 8000, DocumentRoot: ".",
SSLEnable: true, SSLCertName: [%w[CN localhost]]).start'
Leave a Reply
You must be logged in to post a comment.