skip to Main Content

I have a Cpanel/WHM server with Nginx installed as reverse proxy (with default Nginx manager), so i tried to replace Nginx with Engintron.
I installed Engintron and uninstalled Nginx via Cpanel Nginx manager.
As a result i got website not working and Nginx couldn’t start (status from WHM Engintron page), so i should reinstall Nginx?
I don’t know if Engintron contains already Nginx or not
I tried to reinstall Nginx and website work again, but i don’t know if Engintron is serving the website or Nginx

2

Answers


  1. Engintron contains nginx installation within their script. So if you install only engintron, it will be default instead nginx in reverse proxy mode with apache.

    You can check your nginx installed configuration file location by
    sudo nginx -t

    (it will show location of configuration file along with testing the same).

    See if the nginx configuration file matches the engintron configuration file or not. If you are confused here also then run
    $ sudo nginx -T

    this will dump the output of configuration file which you may tally with Engintron config file.

    Last option would be to uninstall both the nginx and make a clean installation of Engintron.

    Login or Signup to reply.
  2. Try to run these commands first:

    /usr/sbin/nginx -s stop
    /usr/local/cpanel/scripts/restartsrv_nginx start
    

    If the problem still exists, Uninstall Nginx and all Ruby packages from EasyApache via WHM and reinstall Nginx again.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search