Versions Compared

Key

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

...

  • Create a configuration file mftudmg.conf under this directory (normally C:\UDMG\nginx\conf\enabled):
Panel

upstream udmg_auth_proxy {
 # MFT Auth Proxy Configuration
    server        localhost:5000;
}

server {
    listen        8080;
    server_name   localhost;

    access_log    logs//mftudmg.access.log;

    location /service/ {
      proxy_pass  http://udmg_auth_proxy/;
    }

    location / {
        try_files $uri $uri/ /index.html;
        root      udmg;
    }
}

...

  • Create the Root directory under the NGINX main directory called mft udmg:
Panel

C:\UDMG\nginx> mkdir mftudmg

  • Start NGINX
Panel

# start nginx

...