Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

Version 1 Current »

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 deploymenta:

  server {
    server_name snomed.terminology.tools;
    access_log /var/log/nginx/sct.access.log main;
    location / {
        proxy_pass http://localhost:8080/;
    }
  }

 

  • No labels