Installing and Configuring Nginx Gateway
Overview
Documents installation and configuration of Nginx.
Details
Download the software and install as a Linux package.
Configure local virtual settings in the /etc/nginx/conf.d/virtual.conf file. Here is a sample used for the reference deployment:
server {
server_name snomed.terminology.tools;
access_log /var/log/nginx/sct.access.log main;
location / {
proxy_pass http://localhost:8080/;
}
}References/Links