Skip to content

The Geek Worker

Random Computer Issues And Things That Fixed Them For Me

  • About this Website
  • Helpful Links
  1. Home
  2. Apache

Tag: Apache

  • 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 […]

  • 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 […]

  • February 25, 2014 · Article

    WordPress: Images not displaying, Redirects not working

    Moved my WordPress installation to a new server. I kept all paths etc intact, copied my VirtualHost and permissions were good, so I was at first surprised when my images didn’t show and redirects didn’t work. The cause was quickly found, however; it seems my old install had different default settings hidden somewhere in the […]

  • 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.