WEB base on file server: FileRun
http://blog.filerun.com/how-to-install-filerun-on-ubuntu-16/
Follow above link to install Filerun on Ubuntu 16.4.x platform. Then you will need to setup Apache web service configure for Filerun.
phillips@phi-h4-101:/etc/apache2/sites-enabled$ more filerun.conf
<VirtualHost *:999>
DocumentRoot /var/www/html/FileRun
<Directory /var/www/html/FileRun>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/filerun-web_error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/filerun-web_access.log combined
</VirtualHost>
phillips@phi-h4-101:/etc/apache2$ cat ports.conf
# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default.conf
Listen 80
Listen 88
Listen 999
<IfModule ssl_module>
Listen 443
</IfModule>
<IfModule mod_gnutls.c>
Listen 443
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet