Introduction to proxmox backup server web interface

Introduction to the Proxmox backup server: the web interface

Proxmox backup server is an enterprise-level solution to backup containers, virtual machines and physical hosts. In the first part of this series, we learned how to download and install the distribution. Although the system can be managed from the command line, just like any other Linux distribution, it comes also with a user-friendly, integrated web interface.

Read more

How to install Node.js on Raspberry Pi

How to install Node.js on Raspberry Pi

A Raspberry Pi can function as a lightweight web server, hosting and serving content to thousands of users for a very low cost. Raspberry Pi models can host web server environments such as Node.js, which is a JavaScript runtime environment that is used for hosting websites. It offers users the ability to write websites in JavaScript, in which the code executes on the server instead of a client’s browser. This puts some additional load on the server when compared to a static site, but a Raspberry Pi can easily handle light traffic to the site.

Read more

Linux Apache log analyzer

Linux Apache log analyzer

For every visit to your Apache web server, a line is generated inside of the log file. As you can imagine, the log files can fill up very quickly with visitor information and errors that are encountered, so they become unwieldy and tough to sift through. Analyzing the logs is an important part of administering Apache and ensuring that it runs as expected.

Read more

Linux Apache not executing php files: Solution

Linux Apache not executing php files: Solution

If you are running an Apache web server on your Linux system and find that PHP files are not being executed, there are a few potential solutions that can help with this problem. PHP is a common component of web server setups, and is the programming langauge used by WordPress, the most popular content management system in the world. It is commonly installed alongside Apache and MySQL, which is known as LAMP (Linux, Apache, MySQL, PHP).

Read more

How to check Nginx version on Linux

How to check Nginx version on Linux

In this tutorial, we will show how to checck the installed version of Nginx on a Linux system. Nginx is one of the most popular web server suites deployed across the internet and can be used as both a web server and a reverse proxy server. Knowing your version of Nginx will allow you to check for updates and install new features, compatibility with other Linux or web hosting components, and with ensuring that your current version of Nginx does not contain any published security vulnerabilities.

Read more

How to check Apache version on Linux

How to check Apache version on Linux

In this tutorial, we will show several methods you can use to check the installed version of Apache web server on a Linux system. Knowing the installed version of Apache is important for staying on top of new updates, checking for compatibility with other installed components, troubleshooting issues, and ensuring that your current version of Apache does not contain any published security vulnerabilities. Follow along with the Linux commands below that help us identify the version of Apache on all major Linux distros.

Read more

OpenLiteSpeed vs Nginx

OpenLiteSpeed vs Nginx

One of the first – and most crucial – decisions that a website owner will need to make is what type of web server to use. The decision to host your website on a Linux system is a no brainer, but when it comes to web servers, there are a few choices and they all come with their own pros and cons. Among the most popular on Linux is NGINX and OpenLiteSpeed, both well known for their speed and ability to host concurrent connections.

Read more

OpenLiteSpeed default password

OpenLiteSpeed as reverse proxy

In this tutorial, you will learn how to configure OpenLiteSpeed as a reverse proxy server. A system that sits between a client and a web server (or servers) can be configured as a reverse proxy. The proxy service acts as a frontend and works by handling all incoming client requests and distributing them to the backend web, database, and/or other server(s). The advantages of a reverse proxy become most apparent under high traffic conditions or situations where multiple backend servers are deployed and need some form of load balancing.

Read more

OpenLiteSpeed change port

OpenLiteSpeed htaccess setup

One of the most alluring features of OpenLiteSpeed is that it is highly compatible with Apache, so web admins migrating from Apache web server to OpenLiteSpeed will not have to spend much time converting their configuration. When using the Apache web server, .htaccess files (also called “distributed configuration files”) are used to specify configuration on a per-directory basis, or more generally to modify the behavior of the Apache web server without having to access virtual hosts files directly (this is usually impossible for example, on shared hosts).

Read more

OpenLiteSpeed change port

OpenLiteSpeed change port

The default listening port for OpenLiteSpeed web server is 8088. Many Linux administrators may be more accustomed to using the typical HTTP listening port 80, and HTTPS port 443. If you already have firewall rules or other settings configured for the typical ports, or just need to switch the listening port for other reasons, it is very easy to do inside of the OpenLiteSpeed web panel. In this tutorial, we will guide you through the step by step instructions of changing the default listening port for OpenLiteSpeed server on a Linux system.

Read more