HTTPS (2)

Dave

ERR_TOO_MANY_REDIRECTS with Synology Application Portal

I run a few websites from a VM on my Synology NAS. The VM has the typical LAMP setup for running Wordpress and Drupal sites. As it is not exposed directly to the internet, Apache serves up all sites on port 80 and I configured…

Dave

Quickly create and implement a self signed cert for Tomcat...

Create keystore with a self signed cert keytool -genkey -keystore /path/keystore.jks -alias selfsigned -keyalg RSA -keysize 4096 -validity 720 Enter details for cert and enter password = password123 <Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol" maxThreads="150" SSLEnabled="true" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keyAlias="selfsigned" keystoreFile="/path/keystore.jks" keystorePass="password123" /> Verify https://192.168.1.10:8443/ Should return…