Skip to main content

Posts

Showing posts with the label web server

How to install Litespeed web server on Ubuntu 14.04 (LTS)

LiteSpeed Web Server (LSWS) is a high-performance Apache drop-in replacement. LSWS is the 4th most popular web server on the internet and the #1 commercial web server. Upgrading your web server to LiteSpeed Web Server will improve your performance and lower operating costs. This guide shows you how to install a litespeed webserver on an Ubuntu 14.04 (LTS) server. Before you begin update your system  - # sudo apt-get update && sudo apt-get upgrade   Installation must be performed in a command line terminal. For testing purposes, LiteSpeed Web Server can be installed into a home directory by a non-privileged user. For production use, it should be installed into a system directory. Download latest litespeed package from there website - wget https://www.litespeedtech.com/packages/5.0/lsws-5.0.18-ent-x86_64-linux.tar.gz Decompress the package into a convenient location: tar -xvf  lsws-5.0.18-ent-x86_64-linux.tar.gz get your production lice...

LAMP on Ubuntu

LAMP Configuration on Ubuntu A LAMP (Linux, Apache, MySQL, PHP) stack is a common web stack used for hosting web content. This guide shows you how to install a LAMP stack on an Ubuntu 14.04 (LTS) server. Before you begin update your system  - # sudo apt-get update && sudo apt-get upgrade   Apache Install and Configure sudo apt-get install apache2 Configure Virtual Hosts There are several different ways to set up virtual hosts; however, below is the recommended method. By default, Apache listens on all IP addresses available to it. Within the /etc/apache2/sites-available/ directory, create a configuration file for your website, example.com.conf , replacing example.com with your own domain information:   vim /etc/apache2/sites-available/example.com.conf         <VirtualHost *:80>    ServerAdmin webmaster@example.com ServerName example.com ServerAl...