Category Archives: 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

Centos 7 redirect http to https

<VirtualHost *:80> ServerName example.com Redirect “/” “https://example.com/” </VirtualHost>

Posted in apache, centOS | Comments Off on Centos 7 redirect http to https

resize diskspace instant machine ‘centOS’ on Google Cloud Platform

sudo yum -y install cloud-utils-growpart sudo growpart /dev/sda 1 sudo xfs_growfs /dev/sda1 df -h /dev/[DEVICE_ID]

Posted in apache, centOS | Comments Off on resize diskspace instant machine ‘centOS’ on Google Cloud Platform

How to add directory browsing in apache configuration?

One of the “must do’s” on setting a secure apache web server is to disable directory browsing.  Usually apache comes with this feature enabled but its always a good idea to get it disabled unless you really need it. First … Continue reading

Posted in apache, command line of linux, My Linux | Comments Off on How to add directory browsing in apache configuration?