Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Configure local virtual settings in the /etc/nginx/conf.d/virtual.conf file.  Here is a sample used for the reference deploymentadeployment:

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

...