Category Archives: My Linux

How to Enable & Set Up .htaccess File on Apache

What is an htaccess File? The .htaccess file in Apache is a tool that allows configurations at the directory and subdirectory level. Using .htaccess enables you to configure website permissions without altering server configuration files. This tutorial will show you how to set up and enable htaccess on … Continue reading

Posted in apache, My Linux | Comments Off on How to Enable & Set Up .htaccess File on Apache

SSL v3 goes to the dogs – POODLE kills off protocol

Apache To disable SSLv3 on your Apache server you can configure it using the following. SSLProtocol All -SSLv2 -SSLv3 This will give you support for TLSv1.0, TLSv1.1 and TLSv1.2, but explicitly removes support for SSLv2 and SSLv3. Check the config … Continue reading

Posted in apache, My Linux, windows | Comments Off on SSL v3 goes to the dogs – POODLE kills off protocol

Disable TLS 1.0 /1.1 in Apache Server

1. Open Apache configuration Open terminal and run the following command to open Apache configuration file. $ sudo vi /etc/apache2/httpd.conf Also read : How to Redirect POST Request Data in .htaccess 2. Disable TLS 1.0/1.1 Look for the following line in bold … Continue reading

Posted in apache, My Linux | Comments Off on Disable TLS 1.0 /1.1 in Apache Server

How can I renew Let’s Encrypt certificates

Let’s Encrypt uses the client Certbot to install, manage, and automatically renew the certificates they provide. In the case where your certificate does not automatically renew on your Droplet, you can manually trigger the renewal at anytime by running: Copy If you … Continue reading

Posted in lets encrypted, My Linux | Comments Off on How can I renew Let’s Encrypt certificates

How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address

Make sure the mod_ssl security module is installed and enabled so the Apache web server can use the OpenSSL library and toolkit: yum install mod_ssl openssl Execute the following commands: mkdir -p /etc/httpd/ssl/ mv /etc/httpd/conf.d/ssl.conf /etc/httpd/conf.d/ssl.conf.bak cd /etc/httpd/ssl/ Generate SSL … Continue reading

Posted in centOS, godday, SSL | Comments Off on How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address