Versions Compared

Key

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

...

Note

The following steps require root privilege, be sure that you have the correct access before to continuecontinuing.

...

  • Create a configuration file mft.conf under this directory (normally /etc/nginx/conf.d):. This will create 2 location locations: ‘/' for the UDMG Admin UI and '/service' for the internal authentication mechanism.

...

Panel

# mkdir -p /srv/www/udmg

  • Start Enable and start the NGINX service using the Init system.
Panel

# systemctl enable nginx

# systemctl start nginx

  • Check that the HTTP server was started and is running, for example with the curl command:
Panel

# curl http://localhost:8080
<html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
<hr><center>nginx/1.21.6</center>
</body>
</html>

This error (403) is exceptedexpected, since we don't have any asset deployed.

...

Panel

C:\>curl.exe http://localhost:8080
<html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
<hr><center>nginx/1.23.0</center>
</body>
</html>

This error (403) is exceptedexpected, since we don't have any asset deployed.

...