stunnel
Web-Dienste ohne eigenes SSL absichern.
Zertifikatserstellung: cd /etc/stunnel/ #We need to create a self-signed certificate with the following commands: openssl genrsa -out server.key 4096 #Generate a CSR (Certificate Signing Request): openssl req -new -key server.key -out server.csr #Generating a Self-Signed Certificate: openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt # Combine key with certificate: cat server.key > server.pem && cat server.crt >> server.pem