@napierge @kasperd not really, doing a CA would only be useful if you had other people/computers using that CA, this is unrealistic in the case of a public website opened to anyone
you can just self sign a certificate using openssl command like this:
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -sha256 -days 3650 -nodes -subj "/C=XX/ST=StateName/L=CityName/O=CompanyName/OU=CompanySectionName/CN=CommonNameOrHostname" (command from stackoverflow.com/a/10176685 )
https://bsd.network/@solene/113542699172250972
https://stackoverflow.com/a/10176685
@solene ok thanks, this command was presented as creation certificate just for CA, in my source, so it little confused me because I was not sure that can be used directly as certificate for my […]
────
────