Installing the web server
Last updated
Please follow the steps to install Screena Portal in this order:
Installing the web server (you are here)
This guide covers the installation and configuration of Nginx as the web server for the application.
Edit the default server configuration of Nginx by running the following command in the terminal:
sudo nano /etc/nginx/sites-available/defaultAdd the following location block to the server configuration:
location /rest {
proxy_pass http://localhost:8080/rest;
}Save the changes and close the file. Restart Nginx for the changes to take effect:
sudo systemctl restart nginxUnzip the web.zip file into the directory /var/www/html.
Last updated
sudo unzip web.zip -d /var/www/html