Skip to content

The Geek Worker

Random Computer Issues And Things That Fixed Them For Me

  • About this Website
  • Helpful Links

Tag: SSL

  • May 26, 2020 · Article

    WordPress: Site not Secure despite SSL Certificate

    I’ve recently migrated all my sites to use SSL (I know, it’s long overdue) and despite the SSL-Certificates being valid and working, Chrome and Firefox would show my sites as “not secure”. (No padlock icon.) After some digging, I discovered that WordPress really doesn’t play very nicely with SSL. Lots of themes, plugins, etc will […]

  • August 19, 2017 · Article

    Easy-RSA: “failed to update database”

    Attempted to create a new certificate using the EasyRSA suite and got the following error: “failed to update database” Unfortunately the script is pretty laconic, but some quick testing showed this was due to trying to re-use the default display name: Name [EasyRSA]: Picked a different name and the script committed my certificate correctly.

  • July 31, 2016 · Article

    Easy-RSA Jabber SSL Certificate Problems

    I’m currently setting up a new server and ran into something odd. Connecting to ejabberd with Pidgin, the later would reject the SSL certificate outright. At first I thought I had messed up the hostnames, or used an outdated Hash algorithm or whatever. The errors I saw in the debug window were: (22:17:42) nss: ERROR […]

  • October 27, 2014 · Article

    Disable SSLv3 in Postfix, Dovecot

    Postfix: Disabling certain versions of SSL works like this in Postfix: In your /etc/postfix/main.cf add or modify the following config parameter like so: smtpd_tls_protocols=!SSLv2,!SSLv3 If you are using mandatory TLS you’ll want to set this instead: smtpd_tls_mandatory_protocols=!SSLv2,!SSLv3 These should be fairly self-explanatory, but for further detail read the Postfix configuration parameters documentation. Do not forget […]

  • October 15, 2014 · Article

    Test your SSL setup

    Qualys offers a great tool that will check your server for SSL config issues, such as weak ciphers and outdated protocol versions.

  • August 21, 2014 · Article

    Can I safely send a Certificate Request (CSR) by Email?

    Yes. The CSR is your public key, which will be verified and signed by the certificate authority (CA) and returned to you afterward. It is this signed version you will then use in your application. It is useless without the private key, so even if someone makes a copy of it, they won’t be able […]

  • April 17, 2014 · Article

    Apache: How To Redirect http to https

    If you want to direct traffic from your http so that it gets encrypted, this is really easy to do in Apache: Step one: Set up your https vhost: <IfModule mod_ssl.c><VirtualHost 10.1.1.1:443>DocumentRoot /var/www# other server options go here as needed# – logging for exampleSSLEngine onSSLCertificateFile /etc/ssl/certs/example.certSSLCertificateKeyFile /etc/ssl/private/example.key# Add other SSL specific options as needed</pre></VirtualHost></IfModule> Step […]

  • November 20, 2013 · Article

    Apache: ssl_error_rx_record_too_long Error

    Got the error ssl_error_rx_record_too_long  in Apache. Was confused at first, but then realized I had not configured SSL properly – Firefox was attempting to parse http as https. So I set out to configure SSL and lo and behold, this solved the issue.

  • June 14, 2011 · Article

    Enabling SSL in Apache2 on Ubuntu

    I’m using my server for various admin interfaces and so want to SSL encrypt all traffic to the web server. This is easy enough to add to the default vhosts. First, we need an SSL certificate. Create it by running: openssl req -new -x509 -days 3650 -nodes -out /etc/ssl/certs/apacheserver.pem -keyout /etc/ssl/private/apacheserver.pem This generates a self-signed […]

Recent Posts

  • Inkscape: “Document Properties” Window Not Showing Up
  • Synology Drive Client does not connect on Apple MacOS
  • “The iTunes Store is temporarily unavailable. Please try again later” when trying to subscribe to Podcast
  • “Access Denied” Errors with TortoiseSVN on Samba
  • Keyboard and Mouse Microstutters with a Dell Latitude Notebook

Recent Comments

  1. Bart on Gigabyte OSD_Sidekick: “Please check if your USB cable is connected”
  2. Jason on Sony Vegas and Sony Movie Studio: No Audio Tracks In mp4 video filefound
  3. DaReclama on OpenVPN: IP packet with unknown IP version seen
  4. vilva on Excel Formula to get Number of Days in a Month
  5. Michael (Micky) Avidan on Excel Formula to get Number of Days in a Month

Archives

  • February 2025
  • December 2023
  • September 2023
  • July 2022
  • June 2022
  • April 2022
  • November 2021
  • March 2021
  • January 2021
  • August 2020
  • July 2020
  • May 2020
  • January 2020
  • May 2019
  • November 2018
  • July 2018
  • January 2018
  • August 2017
  • January 2017
  • September 2016
  • July 2016
  • October 2015
  • August 2015
  • July 2015
  • June 2015
  • May 2015
  • December 2014
  • November 2014
  • October 2014
  • September 2014
  • August 2014
  • June 2014
  • April 2014
  • February 2014
  • December 2013
  • November 2013
  • October 2013
  • September 2013
  • July 2013
  • June 2013
  • April 2013
  • February 2013
  • October 2012
  • August 2012
  • March 2012
  • January 2012
  • October 2011
  • September 2011
  • August 2011
  • June 2011
  • July 2007

Categories

  • Article

© 2026 The Geek Worker. Proudly powered by WordPress.