Skip to main content

Posts

Showing posts with the label HTTP

How To Install cPanel On Amazon Cloud (AWS) EC2 Instance?

Why easy to use cPanel ?   cPanel  is a Linux   based web GUI hosting control panel. The main advantage of cPanel servers is that you can easily install and configure the W ebsite and E -mail.   WHM  - Web Host Manager is a tool that is also used, as well as the reseller server administrator. Resellers can be accessed by authorized resellers in WHM, by using a reseller account can create and manage sub-accounts which may be limited modifications.   To change all the server level, server administrators need the Administrator login that you use to manage tasks such as Apache , Php and upgrading perl module  installed. cPanel servers have access to the root password of the server. In the following blog , we look at the installation of cPanel Server  on EC2 . Setup AWS EC2 for cPanel.   1. Start with log into the  AWS Management Console . Open the Amazon EC2 console by choosing EC2 under Compute.   2...

How to make faster your Apache with enable HTTP/2 Protocol on Ubuntu

  Why HTTP/2 need to update? HTTP/2 is much faster than HTTP/1.1. The HTTP/2 protocol achieves this by enabling web browsers to send multiple, simultaneous requests to the server.  In order to make use of HTTP/2, you must jump through a few steps. Requirements Unfortunately, the Apache2 installation in Ubuntu Server defaults to HTTP/1.1. Your web server must be making use of HTTPS, so you'll need to have an SSL certificate installed. Self-signed certificate, because you can not do this, you must use a tool such as Let 's Encrypt. See : How to install and use Let's Encrypt on a Ubuntu Server. You must install at least version 2.4.26 of the Apache. As with previous versions HTTP / 2 it is not a production-ready. Installation To upgrade Apache2 to this version, issue the following commands:   sudo apt install software-properties-common sudo add-apt-repository ppa:ondrej/apache2 sudo apt update sudo apt install apache2   Enable the HTTP/2 modul...

Speed up Apache Website with Varnish HTTP Cache

Introduction. Varnish is reverse-proxy   Accelerator is a web application that is also known as temporary proxy HTTP cache scope and makes the website very fast. Depending on the architecture used, it can make site 4-8 times faster. Before Installation Requirements. - A pache web-server  installed. - Need EPEL repositories installed  for Cantos / RHEL . N o need for Ubuntu. Centos/ RHEL   sudo rpm -Uvh   https://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-7-11.noarch.rpm   Install varnish. Centos/ RHEL   sudo yum install  varnish                                               Ubuntu sudo apt-get install  varnish          ...