Installing NGINX
Instructions for installing NGINX, a reverse proxy server.
NGINX is a reverse proxy server that allows clients to access Tamr Core securely over HTTPS. This topic provides instructions for installing NGINX on Red Hat Enterprise Linux (RHEL) 7 and Ubuntu.
Before You Begin:
- Determine which version of NGINX is required for your operating system (OS).
- Download the NGINX package for your OS.
- Complete all NGINX documented prerequisites.
Installing NGINX on RHEL 7
To install NGINX on RHEL 7:
- Update the repository information:
sudo yum update
- Install the
nginx
package:
sudo yum install nginx
- Enable automatic service start:
sudo systemctl enable nginx.service
Installing NGINX on Ubuntu
To install NGINX on Ubuntu:
- Update the repository information:
sudo apt-get update
- Install the
nginx
package:
sudo apt-get install nginx
Configuring NGINX for HTTPS
After completing Tamr Core installation, configure NGINX for HTTPS communication.
Updated over 2 years ago