How to Rewrite URLs with mod_rewrite for Apache on Ubuntu 20.04

rewrite urls with mod_rewrite for apache on ubuntu 20.04

The mod_rewrite is an Apache module that uses a rule-based rewriting engine. It is used for translating and redirecting the requested URL to a new URL. It allows a URL to be changed dynamically. So the visitor never sees the URL change in the address bar. With mod_rewrite, you can rewrite an unlimited number of rules. This will allow you to rewrite the URL based on environment variables, HTTP headers, and server variables.

Read More

Multisite WordPress Cluster Auto Installation

multisite wordpress cluster auto installation

If you have multiple standalone WordPress websites, then it’s a good idea to go with WordPress multisite network.
Multisite WordPress installation allows you to create and manage multiple WordPress websites from a single dashboard. This way, you can edit and update all of your websites from a single place. You can also install and activate plugins and themes for multiple sites at once.

Read More

MongoDB Replica Set with Master-Slave Replication and Automated Failover

A replica set is a group of MongoDB database nodes used for defining database clusters with master-slave replication and automated failover. A replica set contains a single primary node, multiple secondary nodes, and an arbiter node. The primary node receives all write operations while other nodes apply operations from the primary so that all nodes have the same data set.

Read More

How to install Odoo 11 on CentOS 7 with Nginx as a Reverse Proxy

guide to installing odoo 11 on centos 7 with nginx as a reverse proxy
installing odoo 11 on centos 7 with nginx as a reverse proxy

In this tutorial, we will guide you through the steps of installing Odoo 11 on CentOS 7. We will also install Nginx and configure it as a reverse proxy. Odoo (formerly OpenERP) is a simple and intuitive suite of open-source enterprise management applications such as Website Builder, eCommerce, CRM, Accounting, Manufacturing, Project and Warehouse Management, Human Resources, Marketing, and many more.

Read More

Glassfish and Payara Auto-clustering: Running Java EE Highly-available Applications In The Cloud

Building a highly-available clustered infrastructure is one of the most commonly used solutions to achieve 100% uptime for your application. In a clustered environment, there is a number of interconnected instances running the same stack and operating the same data. So cluster is able to handle more load than a single server. It will also add more servers automatically to the cluster as per application demand.

In this guide, we will show you how to deploy Java EE applications using Glassfish and Payara auto-clustering on the RoseHosting Cloud platform.

Read More

How To Install Docker Compose on Debian 9

how to install docker compose on debian 9
ow to install docker compose on debian 9 tutorial

Docker is an open-source application that provides lightweight operating-system-level virtualization through the use of containers. The key benefit of Docker is that it allows users to package an application with all of its dependencies into a standardized unit for software development. Docker Engine is available in Community Edition (CE) and Enterprise Edition (EE). In this guide, we will do the installation of Docker Community Edition on Debian 9.

Read More