Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hjzheng/little-trick


https://github.com/hjzheng/little-trick

Last synced: 27 days ago
JSON representation

Awesome Lists containing this project

README

        

http-server 启动 https

npx http-server -S -C ./cert.pem -K ./key.pem

生成证书
openssl genrsa -out key.pem 1024
openssl req -new -key key.pem -out csr.pem
openssl x509 -req -in csr.pem -signkey key.pem -out cert.pem

# little-trick