Installing NGINX

In order to install Stream, the server must have access to a repository (mirror, iso file, …​) of the linux distribution you are using in order to be able to install the dependencies of the software.
  1. Connect to the server with an account with administrative privileges;

  2. Install the NGINX web server using the following command:

    # yum install nginx
  3. Enable NGINX to start at boot using the following command:

    # systemctl enable nginx
  4. Stop the NGINX service with the following command:

    # systemctl stop nginx