Page tree

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

Compare with Current View Page History

« Previous Version 2 Current »

Overview

Documentation on configuring nginx for dev and prod environments.

Dev Environments

Windows

For general information on Windows- see:

Recommended setup

  • Install in c:/nginx
  • Edit c:/nginx/conf/nginx.conf
    • Configure the following redirects for server localhost:80

        location /ims {
            proxy_pass https://ims.ihtsdotools.org;
        }
        location /dev-ims {
            proxy_pass https://dev-ims.ihtsdotools.org;
        }
        location /ims-api {
            proxy_pass https://ims.ihtsdotools.org/api;
        }
        location /dev-ims-api {
            proxy_pass https://dev-ims.ihtsdotools.org/api;
        }
  • Start nginx (see the instructions page)

 

 

 

Prod Environment

TBD

 

  • TBD

 

 

 

  • No labels