How To Install the Apache Web Server on Ubuntu 18.04 Date-31-05-2020 STEP 1: Update and Upgrade the apt tool to ensure we are working with the latest. sudo apt update STEP 2:  Install Apache and select Y when prompted. sudo apt install apache2 STEP 3: Before testing Apache, it’s necessary to modify… Continue Reading How To Install the Apache Web Server on Ubuntu 18.04

1) Download and install the IIS from the below URL. https://www.iis.net/downloads/microsoft/url-rewrite 2) Select the website you want to apply redirection to, then double-click URL Rewrite. 3) Click Add Rule(s) 4) Select Blank rule in the Inbound rules section, then click the OK button. 5) Give your redirect an easy-to-remember name.… Continue Reading Redirect HTTP to HTTPS with Windows IIS 10

Download the latest Windows ACME Simple (WACS) ZIP file from the Github releases page, https://github.com/PKISharp/win-acme/releases. 2. Next extract the zip file to a folder of your choice. I am placing it in C:\inetpub\letsencrypt folder. 3. Right click on wacs.exe and select Run as Administrator to start the Windows ACME Simple… Continue Reading How to install a Let’s Encrypt SSL cert on Microsoft IIS

Setup a new Virtual Host domain in LAMPP Server Date posted : 31/05/2019 In this post, we will be explaining how to setup a new virtual host domain in lampp server What is VirtualHost: Virtual host allows us to use an alias name for your website, configure the document root… Continue Reading Setup a new Virtual Host domain in LAMPP Server

Install OpenLiteSpeed On Ubuntu Date : 20/03/2019 OpenLiteSpeed is the Open Source edition of LiteSpeed Web Server Enterprise Lite speed. OpenLiteSpeed is designed to be lightweight with a user friendly web interface to help webmasters create and manage their websites easily and most importantly used web sever. Installation step for… Continue Reading Install OpenLiteSpeed On Ubuntu

Create apache Virtual Hosts In Ubuntu DATE POSTED: 06/03/2019 In this post we will explain how to create the virtual hosts in ubuntu. What is: Apache? Apache is the most important used web server software in the world because it is an open source software. This web server developed and… Continue Reading Create apache Virtual Hosts In Ubuntu

Date Posted:24/03/2017 By default, webserver version, OS information will be visible to public which consider as a security problem because its not a good practice to expose server information. This may result in hackers to intrude your server incase if any vulnerability. So, its always good to hide all server… Continue Reading Hide Webserver information|Modify Server Header on Nginx

Date Posted:06-01-2017 In many scenario, we don’t want particular page to be crawled by bots or we want page to be restricted for particular users. In this post, we gonna explain on how to add authorization page on nginx webserver. Incase, if the server doesn’t have nginx installed, please follow… Continue Reading Enable Authorization(password protected) page on nginx – Ubuntu

Date Posted:05-01-2016 By default, apache logs the IP address where the request comes from. Consider a scenario where webserver(in our post, we deals with apache) behind load balancer either EC2 load balancer or haproxy load balancer,etc., where the request will come to load balancer and loadbalancer transfer the request to… Continue Reading Enable remote IP address logging on apache2 behind load balancer

This post assumes that nginx already installed on the server. If its not installed, please refer the following post to install nginx. We assumes that host is ubuntu and installation path is /etc/nginx. You can follow the same post incase of different OS or installation path is different. You may… Continue Reading Configure multiple domains(virtualhost) on nginx webserver