If your simulation files are stored on a workstation with a web server, you can make your files web accessible, as discussed here.
Procedure:
Install Apache Httpd web server, php and the php ldap library
$ dnf install httpd mod_ssl php php-ldap $ systemctl start httpd $ systemctl enable httpd
$ldap_server_uri = ‘ldaps://ldapserver.example.com’; $search_scope = ‘ou=users,dc=example,dc=com’; $proxy_dn = ‘ldapserver_bind_dn’; $proxy_pass = ‘ldapserver_bind_password’;
Copy index.php, display.php, and logout.php into the Apache Httpd web server’s DocumentRoot directory. On Redhat based machines e.g Fedora, Centos, the default DocumentRoot is /var/www/html
Go to https://localhost , log in and verify that you are able to see your files.