TLS Certificates in Debian and Apache

Adding TLS configurations in Apache: cat > /etc/ssl/private/myserver.key chmod 0640 /etc/ssl/private/myserver.key chgrp ssl-cert /etc/ssl/private/myserver.key cat > /etc/ssl/certs/myserver.crt cd /etc/apache2/sites-available cp default-ssl.conf myserver-ssl.conf vi myserver-ssl.conf – add ServerName if needed – RedirectMatch ^/$ https://myserver.mydomain.com/appname (if needed) – edit SSLCertificateFile and SSLCertificateKeyFile a2ensite myserver-ssl a2enmod ssl vi 000-default.conf – add ServerName if needed – Redirect / https://myserver.mydomain.com/ […]

Visual Studio Code Customizations

My customizations in Visual Studio Code: Cygwin in Integrated Terminal { // start bash, not the mintty, or you’ll get a new window “terminal.integrated.shell.windows”: “C:\\cygwin64\\bin\\bash.exe”, // Use this to keep bash from doing a ‘cd ${HOME}’ “terminal.integrated.env.windows”: { “CHERE_INVOKING”: “1” }, // Make it a login shell “terminal.integrated.shellArgs.windows”: [ “-l” ] } (source: https://stackoverflow.com/questions/46061894/vs-code-cygwin-as-integrated-terminal) Quick […]

Zabbix Components and Ports

Zabbix monitoring system consists of components that communicate with each other. Here is a summary of the TCP ports and some configuration characteristics of various connections. Active agent: The Zabbix agent periodically asks the Zabbix proxy (or Zabbix server, if configured to use the server directly) for the list of items that should be collected, […]

How to Fix GoToMeeting or Skype for Business on Second Monitor

[Update on 2018-08-31: The instructions below are probably not useful anymore after several Windows 10 or other software updates. Things look much better nowadays, even though many software still have problems with differing font scaling factors. I still feel sorry for the many developers out there who apparently don’t have sufficient possibilities to test software […]

Junos Default Applications

From Junos 12.1X47-D25.4 on SRX240H2: markku@srx> show configuration groups junos-defaults applications # # File Transfer Protocol # application junos-ftp { application-protocol ftp; protocol tcp; destination-port 21; } # # Trivial File Transfer Protocol # application junos-tftp { application-protocol tftp; protocol udp; destination-port 69; } # # Real Time Streaming Protocol # application junos-rtsp { application-protocol […]