How to install Nginx as reverse proxy on cPanel server

Introduction

The web-hosting control panels are loaded with the default web-server Apache. cPanel/WHM doesn’t have native support on Nginx web server. However, we can install and configure it many ways on a WHM server to increase the websites’ speed. That will also improve the server performance.

Why run Apache and Nginx together? Is there any advantage by using Nginx as reverse proxy in a cPanel server?

Both Apache and Nginx are powerful and effective web-servers. Apache is the topmost webserver since it was released in 2006 and Nginx is now using top websites. The reason for using Apache and Nginx together are clear, Apache’s power and Nginx’s speed.

By setting Nginx as reverse proxi, we can increase the websites speed and performance in the server. This is because, Nginx will take care of all static contents in the website such as CSS, images, SWF files, MP4 and more and Apache will manage the rest of requests (dynamic requests – php page).

This is known as Nginx reverse proxy setup. Nginx stand as front end servers with a powerful backend Apache server.

How to set up?

If you wish to install nginx as reverse proxy in a cPanel server then, follow this steps:

1, SSH to server as root.
2, Change the directory to “/usr/local/src”

# cd /usr/local/src

Download the latest nginxadmin package & Install

# wget http://nginxcp.com/latest/nginxadmin.tar 
# tar xf nginxadmin.tar
# cd publicnginx
# ./nginxinstaller install

In WHM, now Nginx Admin plugin will be available under plugins section. After installing make sure Nginx process is running on the server, You can chcek this by using the following command.

# ps aux | grep nginx

If it is not showing any process, then kill httpd and restart httpd

#killall -9 httpd
#/etc/init.d/httpd restart

Nginx Admin Uninstall instruction:

#cd /usr/local/src 
#wget http://nginxcp.com/latest/nginxadmin.tar 
#tar xf nginxadmin.tar 
#cd publicnginx
#./nginxinstaller uninstall 

P.S. Make sure that the Nginx is running on port 80 and Apache on different port (like 8080). Also open the new port the server firewall.

That’s it!

Related
How/Steps to install Suhosin Patch(php extension) on Unix/Linux server
how to install/uninstall snoopy logger on Unix/Linux server
iftop installation on Unix/Linux server

, ,

Post navigation

Arunlal A

Senior System Developer at Zeta. Linux lover. Traveller. Let's connect! Whether you're a seasoned DevOps pro or just starting your journey, I'm always eager to engage with like-minded individuals. Follow my blog for regular updates, connect on social media, and let's embark on this DevOps adventure together! Happy coding and deploying!

11 thoughts on “How to install Nginx as reverse proxy on cPanel server

  1. Hello sir, I have installed Nginxcp in my cpanel VPS through this guide. DO I need page cache script like APC or eAccelerator etc and what should I do to make VPS more efficient.

    Thankyou

  2. install nginx as reverse proxy in my kloxo.. i have make some different.. but it works. thanks

  3. Tried to install in new cPanel server (66) and this error appears

    access key doesn’t exist
    go to WHM > Cluster/Remote Access > Setup Remote Access Key
    and click on the Generate New Key button

    Any ideas?

  4. by default, cPanel version 66 will disable Remote Access Key. You can enable it in WHM > Tweak Setting > Security > and tick β€˜on’ Allow deprecated WHM accesshash authentication.


Leave a Reply

Your email address will not be published. Required fields are marked *