Sellery
How to generate your ssl pem files:
openssl genrsa -out key.pem
openssl req -new -key key.pem -out csr.pem
openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem
rm csr.pem
Description
Sellery is a free and open source node.js web server that aims to do one thing: Serve files from a
webroot directory, but have them password protected.
Languages
JavaScript
79.4%
HTML
15.5%
Dockerfile
4.5%
Shell
0.6%