Web Server
How To create and connect an FTP Account in cPanel
Step 1 : Login into you Cpanel by opening “ server-ip:2087 ” in the URL of the browser , Step 2 : login into the WHM using root credentials . Step 3: Open List Accounts . Step 4 : Open the account of cpanel by clicking on the Cpanel Icon . Step 5 : ...
CHANGE AND UPDATE PASSWORD OF CAPNEL ACCOUNT
Step 1 : Login into you Cpanel by opening “ server-ip:2087 ” in the URL of the browser , Step 2 : login into the WHM using root credentials . Step 3: Open List Accounts . Step 4 : Open the account of cpanel by clicking on the Cpanel Icon . Step 5: ...
HOW TO CREATE AN ACCOUNT IN CAPNEL WITH WHM
Step 1 : Login into you Cpanel by opening “ server-ip:2087 ” in the URL of the browser , Step 2 : login into the WHM using root credentials . Step 3: Click on the Create a New Account button . Step 4: Enter all the mandatory fields and choose a ...
How to change Nginx port in Linux
Step 1 : Check the default port by accessing the server IP address in the browser . Step 2: Login into the server using root credentials through putty . Step 3: Open Nginx configuration file with a text editor . Command : # vi /etc/nginx/nginx.conf ...
Nginx Installation in CentOS 7
Step 1: Add Nginx repository . Command : # yum install epel-release Step 2: Install Nginx using following command . Command: # yum install nginx Step 3: Start the service of Nginx . Command : # systemctl start nginx Step 4: Check status of Ngnix . ...
How to Connect Node.js Application with MongoDB on CentOS
This article will help you to connect Node.js application with MongoDB. Also, configure MongoDB drive for nodejs using Mongoose node application on CentOS and Redhat systems. Prerequsities We assume that Node.js and MongoDB are already installed on ...
How-to-set-up-a-node-js-application with apache on-centos-7
Node.js is an open source Javascript programming environment to make server-side and networking applications simple to create. Installing Node.js First of all, You need to enable node.js yum repository in your system provided by the Node.js official ...
Use NGINX as a Reverse Proxy
What is a Reverse Proxy? A reverse proxy is a server between internal and external clients which transmits clients requests to a different server. Although other standard applications, such as Node.js, can support themselves, NGINX has a range of ...
URLs Redirect with Apache Web Server
You can learn how to redirect URLs with Apache in this section. Redirecting a URL allows you to return an HTTP status code that guides the client to a specific URL, making it useful for instances where a piece of content has been transferred. ...
Apache Virtual Hosts setup on CentOS 7
Introduction The web server of Apache is the most popular way to deliver web content. It serves over half of all active websites in the Internet and is extremely powerful and flexible. Apache divides its features and components into separate units, ...
NGINX: Installation and Basic Setup
Before You Begin You need root access of the server or a sudo privileged user account. Set the hostname of your cloud server. Update your server. Install NGINX Stable Versus Mainline The first decision on your installation is whether you want NGINX ...
Basics Information of Apache Configuration
The Apache HTTP web server is the de facto standard for general HTTP services in many respects. Thanks to its large number of modules, it offers versatile support for proxy servers, URL rewriting, and granular access control. In addition, web ...
Managing Resources using Apache mod_alias
In certain cases all of the services that an Apache host uses are stored in the DocumentRoot of that server. The DocumentRoot is a directory listed in the block of configuration for <VirtualHost>. This directory is intended to represent the various ...
How to Configure NGINX
NGINX is a web server designed for high-traffic cases that is lightweight and highly efficient. The ability to easily support static content such as HTML and media files is one of the most significant features of NGINX. NGINX uses a predictable ...
NGINX : Enable TLS or HTTPS Connections
The Secure Socket Layer (SSL) is the successor to Transportation Layer Security (TLS). It provides stronger and more powerful HTPS and includes non-SSL improvements such as Forward Confidentiality, modern OpenSSL cipher suites, and ...
How to Set Up the htaccess File in Apache
Introduction The purpose of this guide is to show you how to configure Apache htaccess (.htaccess) configuration. The guide covers subjects related to website file system permissions, redirects and limitations of IP address. Before You Begin This ...
Tuning Of Your Apache Server
Your Apache configuration settings have a significant impact on the output of your Microhost Cloud server. There are several tools that can be used to further examine the performance of your Apache server and make educated choices on how to start ...
Rule-based Access Control for Apache
Apache provides a set of tools that allow administrators to manage server-provided access to specific resources. You can already know about authentication-based access controls, which allow visitors to authenticate the server before accessing ...
How to Configure ModSecurity in Apache
Introduction ModSecurity is a web firewall application for an Apache web server. In addition to providing logging capabilities, ModSecurity can monitor HTTP traffic in real time to detect attacks. ModSecurity also operates as an intrusion detection ...
Rewrite URLs using mod_rewrite and Apache
You’ll learn how to rewrite the URLs using mod rewrite and Apache in this article. Rewrite a URL is a server-side operation which can serve contents from a position of a file system that does not exactly suit the client’s request. It could be helpful ...
Installation of LAMP Stack on Ubuntu 16
LAMP, which operates Linux as the operating system, is an open-source web-developing platform using Apache as the web-based server and PHP as an object-oriented scripting language. (Instead of PHP, Perl or Python are sometimes used.) Prerequisites ...
Installing NGINX in Ubuntu 18.04 LTS
What is NGINX? NGINX has powerful load balancing, reverse proxy and cache features, an open-source web server. It was first designed to solve problems of scaling and competition with existing Web servers. Its asynchronous event-based architecture has ...