Versions Compared

Key

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

...

  • Administrator privileges on the Windows machine.

  • No conflicting applications running on ports 80 or 443 (e.g., another web server).

  • Windows machine with internet access

Supported Windows Operating Systems

...

  1. Open the file located at:

    Code Block
    C:\Program Files\nginx\conf\nginx.conf
  2. Change the HTTP and HTTPS ports:

    Code Block
    server {
        listen                   88;
        listen                   8443 ssl;
    }
  3. Replace certs\nginx.crt and cert\nginx.key with the right certificate chain

    Code Block
    	ssl_certificate         certs\\nginx.crt;
        ssl_certificate_key     certs\\nginx.key;
  4. Restart Nginx for the changes to take effect.

Info

If your SSL certificate is signed by an intermediate CA, be sure that it has to be appended into nginx.crt to avoid possible verification errors.

MongoDB

Default Authentication For a single-tenant installation, the default MongoDB credentials are:

...