Skip to content

hheld/UserAdminWebApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Generate a self-signed certificate like this:

openssl genrsa -des3 -out key.pem
openssl rsa -in key.pem -out key.pem
openssl req -sha256 -new -key key.pem -out csr.csr -subj '/CN=localhost'
openssl x509 -req -days 365 -in csr.csr -signkey key.pem -out cert.pem
rm csr.csr

About

Experimenting with Golang and MongoDB to have a reusable user administration for web applications.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published