Skip to content

Latest commit

 

History

History
66 lines (57 loc) · 2.79 KB

README_Ubuntu.md

File metadata and controls

66 lines (57 loc) · 2.79 KB

Automatic installation and configuration (TO BE TESTED...)

Clone this repo (or download the zip and extract it) inside the /var/www/html folder.

Before launching the script for Ubuntu set the flag_ssl variable in order to have SSL enabled or not.

Manual installation and configuration

Install packages

apt-get install apache2
apt-get install php7.3 php7.3-common php7.3-cli php7.3-curl php7.3-json php7.3-opcache php7.3-readline libapache2-mod-php7.3

Configuration

Add the following lines (obviously customized for your infrastructure):

NODE_TLS_REJECT_UNAUTHORIZED='0'
API_PUB_IP='<IP_OR_FQDN>'
IOTRONIC_PUB_IP='<IP_OR_FQDN>'
WSTUN_IP='<IP_OR_FQDN>'
export MOBILE_API="{}"
export WIOTP_ENDPOINTS="{}"
export IOTRONIC_VERSIONS="{'iotronic_version':'<VERSION>', 'dash_version':'<DASH_VERSION>', 'lr_version':'<LR_VERSION>', 'wstun_version':'<WSTUN_VERSION>'}"

and then complete these last configuration steps:

a2enmod rewrite && a2enmod headers
echo -e '<Directory "/var/www/html">\nAllowOverride All\n</Directory>' >> /etc/apache2/sites-enabled/000-default.conf
sed -i "s/short_open_tag = Off/short_open_tag = On/g" /etc/php/7.3/apache2/php.ini
echo -e '. /etc/environment' >> /etc/apache2/envvars
service apache2 restart

Final checks

apache2ctl -M

*Verify the presence of the following lines: php7_module (shared) and rewrite_module (shared)

Install Dashboard

cd /var/www/html
git clone --depth=1 https://github.com/MDSLab/s4t-iotronic-webinterface.git ./iotronic
service apache2 restart

OPTIONAL (SSL for https connection)

  • a2enmod ssl && a2ensite default-ssl
  • Modify SSLCertificateFile and SSLCertificateKeyFile in the following Apache conf file: /etc/apache2/sites-available/default-ssl.conf adding the corresponding paths
  • service apache2 restart
  • Verify if the module ssl_module (shared) is loaded.

OPTIONAL (hardening improvements)

Add the following lines at the end of the apache2.conf (or older httpd.conf):

ServerSignature Off
ServerTokens Prod
Header set X-XSS-Protection "1; mode=block"
Header set X-Content-Type-Options nosniff
Header always set Strict-Transport-Security "max-age=31536000; includeSubdomains; preload"

Final steps (both automatic and manual procedures)

Copy the .htaccess which contains the rewrite rules and the images linked inside the code. In both automatic and manual installation you need to modify the parameters in brackets inside the following file application/config/config.php and then display the WebPage on this URL: http://<SERVER_IP>/<FOLDER_NAME>/Login If you come across forbidden access errors launch chmod 755 -R <folder> command on templates and uploads folders.