Author: Vikas Munjal

apache log client ip 520x245 - Configure Apache server to log client’s public IP addresses behind a Load Balancer 0

Configure Apache server to log client’s public IP addresses behind a Load Balancer

OBJECTIVE Today, We are configuring Apache to log the client’s source IP Address behind a load balancer, to track the authenticity of hits requested on your web server. This data collection will add a lot of advantage to your work. You can track and block IP addresses attempting DOS or DDOS attack to your website, using Web Application Firewall. Get the insights for Geolocation Setup and launch servers in multiple locations based on traffic generated from multiple...

CSF Installation Guide 1

CSF Installation Guide Over Several Linux Distributions | Security | Linux Administration

Installation Guide – CSF Config Server Firewall, widely known as CSF is used to enhance the security of server’s or system’s running over various Linux distributions (generic Linux OS). CSF can be installed over Linux based Plain machines, VPS or Servers. It also provides preconfigured configurations and control panel UI’s for cPanel, DirectAdmin, and Webmin. Let’s begin with installation folks. Installation Commands cd /usr/src wget https://download.configserver.com/csf.tgz tar -xzf csf.tgz cd csf sh install.sh Test whether you have...

apache nodejs 1 520x245 - Configuring Reverse Proxy for Node.js application using Apache | Linux Administration 0

Configuring Reverse Proxy for Node.js application using Apache | Linux Administration

Node.js Node.js is widely used to build web applications with real-time, two-way connections, where both the client and server can initiate communication, allowing them to exchange data freely. The best side is that we don’t need a host container for building a web app just means including a library that listens for HTTP requests on a port and responds. It is as simple as just coding your app and let it listen on any non-privileged...

phpMyAdmin RDS 520x245 - Integrating phpMyAdmin with Amazon RDS Service - MySQL Instance | AWS Tutorials 1

Integrating phpMyAdmin with Amazon RDS Service – MySQL Instance | AWS Tutorials

In this tutorial, we will demonstrate the integration of phpmyadmin with running Amazon RDS MySQL instance. Kindly follow the instructions listed below. Default Document Root folder: /var/www/html cd /var/www/html Download phpMyAdmin from the authorized website or use the wget command below. wget https://files.phpmyadmin.net/phpMyAdmin/4.7.3/phpMyAdmin-4.7.3-all-languages.zip Unzip the phpMyAdmin. unzip phpMyAdmin-4.7.3-all-languages.zip mv phpMyAdmin-4.7.1-all-languages phpmyadmin && cd phpmyadmin Edit the configuration file for phpMyAdmin. mv config.sample.inc.php config.inc.php Default File vim config.inc.php /* Server parameters */ $cfg[‘Servers’][$i][‘host’] = ‘localhost’; $cfg[‘Servers’][$i][‘compress’] =...

cPanel Installation 520x245 - cPanel Installation Guide | Linux Administration 0

cPanel Installation Guide | Linux Administration

cPanel Installation Guide | Linux Administration  To install cPanel & WHM on your server, run the following command: cd /home && curl -o latest -L https://securedownloads.cpanel.net/latest && sh latest This command changes your session to the home directory, download the latest version of cPanel & WHM, and runs the installation script. You can find the detailed instructions regarding cPanel & WHM installations on the links provided below. Installation Guide Installation Guide – System Requirements Installation...

Nodejs 520x245 - Installing Node.js Over Several Linux distributions | Linux Administration 0

Installing Node.js Over Several Linux distributions | Linux Administration

Debian and Ubuntu-based Linux distributions Also including Linux Mint, Linux Mint Debian Edition (LMDE), elementaryOS, bash on Windows and others. For Node.js 6: curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash – sudo apt-get install -y nodejs Alternatively, for Node.js 8: curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash – sudo apt-get install -y nodejs Optional: install build tools Build tools are used to compile and install native add-ons from npm sudo apt-get install...