Page tree

Versions Compared

Key

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

...

Documentation on configuring nginx for dev and prod environments.

Dev Environments

Windows

For general information on Windows- see:

 

 

 

Prod Environment

...

Recommended setup

  • Install in c:/nginx
  • Use an nginx configuration like the following
    • Configure the following redirects for server localhost:80

      Code Block
        location /ims {
            proxy_pass https://ims.ihtsdotools.org;
        }
        location /ims-api {
            proxy_pass https://ims.ihtsdotools.org/api;
        }
      
       
  • See /etc/nginx/conf.d/refset.conf on refset.ihtsdotools.org for specific configuration
  • Start nginx (see the instructions page)

 

  • TBD