Set up SSL and Reverse Proxy with Nginx

Install Nginx first on Guest OS for both AuthFi and ATKey.Login

Add HTTPS SSL Certificate and Private Key into Nginx installed on AuthFi

Add HTTPS SSL Certificate and Private Key into Nginx installed on ATKey.Login

Set SSL Certificate and Private Key Path in Nginx configuration of AuthFi

 ssl_certificate {path of AuthFi SSL certificate}
 ssl_certificate_key {path of AuthFi SSL certificate private key}

Set SSL Certificate and Private Key Path in Nginx configuration of ATKey.Login

 ssl_certificate {path of ATKey.Login SSL certificate}
 ssl_certificate_key {path of ATKey.Login SSL certificate private key}

Set reverse proxy in Nginx configuration of AuthFi

 proxy_pass [http://localhost:8080](http://localhost:8080/)

Set reverse proxy in Nginx configuration on ATKey.Login

 proxy_pass [http://localhost:8080](http://localhost:8080/)

For further clarity you can refer to this Nginx settings configuration sample file.
vm.example.org. is an example hostname.

For any problems installing or navigating Nginx, please refer to the official documentation.