---
title: "Platform | Web User Interface | N3uron KB V1.22"
slug: "platform-web-user-interface"
description: "N3uron is an Industrial Edge Platform for DataOps that enables seamless integration between the industrial plant floor and business applications,"
updated: 2025-12-11T11:22:19Z
published: 2025-12-22T10:47:35Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.n3uron.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Web User Interface

## Introduction

WebUI is the interface used to configure **N3uron** and can also be used to quickly monitor any data collected by **N3uron**. WebUI is a pure HTML5 web application, meaning that it can be opened in any modern web browser, which makes it very convenient for remote access.

By default, WebUI can be reached using plain HTTP (port 8003 by default) and secure HTTPS (port 8443 by default). To force secure connections only, HTTP mode can be disabled.

WebUI is automatically installed in **N3uron** and does not require a license. More than one instance of the WebUI can be created in the same node, which is especially useful for customizing access roles (for instance, when configuring a different logo, access from different networks, etc.). In this case, all new instances would run in demo mode unless a valid license is provided.

To access **N3uron** **WebUI**you will require a web browser. Use the machine’s IP and the port that was configured for the **WebUI** during setup (by default, 8003 for HTTP or 8443 for HTTPS).

![Figure 1- Access Panel](https://cdn.document360.io/54093ab5-6b22-4542-a265-04377931f11a/Images/Documentation/Figure%201-%20Access%20Panel.png)

After N3uron installation, the default users/passwords configured within N3uron are as follows:

|  | **Full access** | **Read-only access** |
| --- | --- | --- |
| User: | admin | user |
| Password: | n3uron | n3uron |

Note:To access N3uron WebUI from a different machine, make sure that the Windows Firewall on the host machine is not blocking the port that was assigned to N3uron WebUI during setup.

WebUI has the following sections:

- **Data:**
  - **Real-Time:** Displays the values of all collected data, along with the quality, timestamp, and description.
  - **Historical:** Allows users to create charts displaying the historical values of all tags and export data to CSV files. Historical data stored in other linked nodes can be retrieved and displayed also.
- **Alarms:**
  - **Real-Time:** Displays the current status of alarms.
  - **Historical:** Allows users to retrieve the events related to alarms from the historical database.
- **System:**
  - **Diagnostics:** Displays the current status of each node and its components.
  - **Config:** Allows users to configure the node and all its components.
  - **Licensing:** Displays licensing information and allows licenses to be applied to each node.

## Configuration

One of the first steps after installing **N3uron**is to configure the **WebUI**.

![WebUI_Headers](https://cdn.document360.io/54093ab5-6b22-4542-a265-04377931f11a/Images/Documentation/WebUI_Headers.png)

The different parameters that can be configured to suit each user's needs and customize access to the node are as follows:

- **Session timeout:**Timeout (in seconds) manages user inactivity and offline session memory storage. User sessions will expire after this period of inactivity. 0 will disable inactivity checks. If a user session loses connection, session data will be retained in the memory so that it can be recovered when the user reconnects. Session data will be erased after the timeout elapses. 0 will set a default timeout of 12 hours to avoid memory leaks.
- **Config lock timeout:**This parameter specifies the amount of time (<meta charset="utf-8">in seconds) a user can keep a config file locked while not modifying it.

******Note******  
A lock is also released when the user session expires. This means that if the **Lock timeout** is greater than the **Session timeout**, the lock may be released because of session expiration instead of lock expiration.

****

- **Data refresh interval:**The interval at which the data is polled from the server, in milliseconds.****
- **Max history tags:**To avoid performance problems when retrieving a huge amount of historical data, the number of tags loaded in one single chart can be limited with this parameter. **Example:**
  - Max history tags = 20 means the maximum amount of tags loaded in one single chart is limited to 20.****
- **Default expanded levels:**Depth of the automatically expanded levels in the real-time tree.****
- **Default selected menu:**Default selected menu at starting.****
- **Server:**
  - **Mode:**Select how the web server will accept connections: users can select HTTP, HTTPS, or both.
  - **Headers:**HTTP security headers are additional directives sent by a web server to enhance security by mitigating various types of attacks and vulnerabilities.Note:This feature is available from **N3uron**version **1.21.9.**
    - [**X-Fr****ame-Options**](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options): This header determines whether your webpage can be displayed within a frame, iframe, embed, or object tags in other websites.Note:The**Content-Security Policy (CSP)** HTTP header includes a **frame-ancestors** directive, making it obsolete for modern browsers; however, it's maintained for backward compatibility purposes.
      - **SAMEORIGIN**: Only allows the page to be displayed in a frame on the same origin as the page itself.
      - **DENY**: Prevents the page from being displayed in a frame, regardless of the origin.
      - **Custom value / =<expressions..>:** Users can input their own text. For example, the deprecated "ALLOW-FROM origin" directive, which is ignored by modern browsers.
    - [**X-Content-Type-Options****:**](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options)****This header prevents the browser from interpreting files with a MIME type different from the one specified by the server. It’s a measure to stop MIME type sniffing attacks.
      - **nosniff**: Instructs the browser to follow the MIME types provided and not alter them.
    - [**Content Security Policy**](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy)**(CSP)****:**It****is a robust layer of security that helps to detect and mitigate certain types of attacks, such as Cross-Site Scripting (XSS) and data injection attacks.
      - **Directive**:
        - **frame-ancestors**: Specifies valid parents that may embed a page.
        - **report-uri**: Instructs the browser where to send reports if the content violates the policy.
        - **report-to**: Sets a reporting group for sending violation reports.
        - **upgrade-insecure-requests**: Forces the browser to use HTTPS instead of HTTP when possible.
        - **Custom value / =<expressions..>:** Users can input their own text. For example, "block-all-mixed-content" directive, which prevents loading of insecure resources on a secure webpage, such as loading HTTP content on an HTTPS page, to enhance security and prevent mixed content vulnerabilities.
      - **Value**:
        - **none**: Won't allow loading of any resources.
        - **self**: Only allow resources from the current origin.
        - **strict-dynamic**: Applies a nonce or hash to script elements, granting trust to a script on the page and extending this trust to the scripts it loads, enhancing security by ensuring only trusted scripts execute.
        - **report-sample**: Requires the inclusion of a sample of the violating code within the violation report, ensuring that the specific code causing the violation is included for analysis and remediation.
        - **inline-speculation-rules**: Allows the inclusion of speculation rules in scripts.
        - **Custom value / =<expressions..>:** Users can input their own text. For example, in the "frame-ancestors" directive, the value "*.n3uron.com" can be used to permit embedding of the page within any webpage under the n3uron.com domain.
  - **HTTP:**
    - **TCP port:**This parameter specifies the port number to open the web interface. The valid range is 1 to 65535. The default setting is 8003.Note:Please make sure the port is not used by any other application running on the same machine.
    - **Network interface:**<font face="Arial"><font color="#000000" face="Arial" style="box-sizing: border-box; font-family: Arial; font-size: 17px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.85px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><span style="box-sizing: border-box; white-space: pre-wrap; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;">Specifies the interface through which the module will be accessible via HTTP.&nbsp;</span></font><span style="box-sizing: border-box; color: rgb(26, 26, 27); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.85px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: transparent; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;"><font color="#000000" face="Arial" style="box-sizing: border-box;"></font></span><font color="#000000" face="Arial" style="box-sizing: border-box; font-family: Arial; font-size: 17px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.85px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><span style="box-sizing: border-box; white-space: pre-wrap; color: rgb(247, 148, 29); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;">All interface</span></font><span style="box-sizing: border-box; color: rgb(26, 26, 27); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.85px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: transparent; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;"><font color="#000000" face="Arial" style="box-sizing: border-box;"></font></span><font color="#000000" face="Arial" style="box-sizing: border-box; font-family: Arial; font-size: 17px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.85px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><span style="box-sizing: border-box; white-space: pre-wrap; color: rgb(247, 148, 29); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;">s</span></font><span style="box-sizing: border-box; color: rgb(26, 26, 27); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.85px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: transparent; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;"><font color="#000000" face="Arial" style="box-sizing: border-box;"></font></span><font color="#000000" face="Arial" style="box-sizing: border-box; font-family: Arial; font-size: 17px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.85px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><span style="box-sizing: border-box; white-space: pre-wrap; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;">&nbsp;are configured by default (0.0.0.0).&nbsp;</span></font><span style="box-sizing: border-box; color: rgb(26, 26, 27); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.85px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: transparent; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;"><font color="#000000" face="Arial" style="box-sizing: border-box;"></font></span><span style="box-sizing: border-box; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: transparent; text-decoration: none; color: rgb(0, 0, 0); white-space: pre-wrap; letter-spacing: 0.48px; float: none; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; display: inline !important;">The option to browse and discover a network interface is also available by clicking on the button to the right.&nbsp;</span></font>
  - **HTTPS:**
    - **TCP port:**This parameter specifies the HTTPS port number for opening the web interface. The valid range is 1 to 65535. The default setting is 8443. Note:Please make sure the port is not used by any other application running on the same machine.
    - **Network interface: <font color="#000000" face="Arial" style="box-sizing: border-box; font-family: Arial; font-size: 17px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.85px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><span style="box-sizing: border-box; white-space: pre-wrap; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;">Specifies the interface through which the module will be accessible via HTTPS.&nbsp;</span></font><font color="#000000" face="Arial" style="box-sizing: border-box;"></font><font color="#000000" face="Arial" style="box-sizing: border-box; font-family: Arial; font-size: 17px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.85px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><span style="box-sizing: border-box; white-space: pre-wrap; color: rgb(247, 148, 29); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;">All interface</span></font><font color="#000000" face="Arial" style="box-sizing: border-box;"></font><font color="#000000" face="Arial" style="box-sizing: border-box; font-family: Arial; font-size: 17px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.85px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><span style="box-sizing: border-box; white-space: pre-wrap; color: rgb(247, 148, 29); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;">s</span></font><font color="#000000" face="Arial" style="box-sizing: border-box;"></font><font color="#000000" face="Arial" style="box-sizing: border-box; font-family: Arial; font-size: 17px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: 0.85px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><span style="box-sizing: border-box; white-space: pre-wrap; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;">&nbsp;are configured by default (0.0.0.0).&nbsp;</span></font><font color="#000000" face="Arial" style="box-sizing: border-box;"></font>The option to browse and discover a network interface is also available by clicking on the button to the right.**
    - **Certificate helper****:**Facilitates establishing HTTPS connections with custom self-signed certificates, offering control over the certificate generation process.****  
Note:This feature is available from **N3uron**version **1.21.8.**

**![CSR_From01](https://cdn.document360.io/54093ab5-6b22-4542-a265-04377931f11a/Images/Documentation/CSR_From01.png)**

To open the self-signed Certificate helper, right-click on the icon next to the HTTPS title section, and then fill out the form.

- **Hosts:**This field in the CSR (Certificate Signing Request) form is used to specify the Subject Alternative Names (SANs) for the certificate. This field allows you to include multiple domain names, IP addresses, and other identifiers that the certificate should cover. The identifiers must be separated by commas. Note:This feature is available from **N3uron**version **1.21.10.**
- **Common Name:** The fully qualified domain name (FQDN) for which the certificate is being requested. This is typically the domain name of the server where the certificate will be installed (e.g., www.example.com).
- **Organization Name:** The legal name of the organization or company that is requesting the certificate.
- **Organization Department:**The specific department or division within the organization that is requesting the certificate.
- **Email:** The email address associated with the organization or individual requesting the certificate.
- **Country:** The two-letter ISO code representing the country where the organization is located (e.g., US for United States, CA for Canada, ES for Spain).
- **State:**The full name or abbreviation of the state or province where the organization is located.
- **Locality:**The city or locality where the organization is located.
- **Street:** The street address of the organization's physical location.
- **Postal Code:**The postal or ZIP code of the organization's location.
- **Key Size:** The size of the cryptographic key pair to be generated for the certificate, measured in bits. Common key sizes include 2048 bits or 4096 bits.
- **Expiration Days:** The number of days until the certificate expires. This determines the validity period of the certificate before it needs to be renewed.

When filling out the form to generate the CSR, ensure that all information provided is accurate and matches the organization's official details. This information will be embedded in the CSR and subsequently used to issue the SSL/TLS certificate. ![CSR_From02](https://cdn.document360.io/54093ab5-6b22-4542-a265-04377931f11a/Images/Documentation/CSR_From02.png)

- **Certificate type:**Select the server HTTPS certificate:
  - **Self-signed:** The server will automatically create and sign a certificate using an internal certification authority, which can be downloaded by clicking on the ellipsis button on the right side of the **Self-signed certificate**field.  **Note**   Starting from **N3uron**version **1.21.9,**the generation of self-signed certificates has been relocated to the Certificate helper.

****

This certification authority is valid for all module instances and must be imported into all the system/web clients that will be used to access WebUI via HTTPS.
  - **Embedded:** Users are required to provide both the **key**and **certificate**files.Note:This feature is available from **N3uron**version **1.21.7.**  
The key for the embedded certificate files will be secure and cannot be downloaded.
    - **Custom certificate:**
      - **Key:**Private key certificate file used for secure connections. The file must be in .pem format.
      - **Key passphrase:**Enter the passphrase associated with the certificate if it was generated with one; otherwise, leave this field empty.
      - **Certificate:**Certifica**te file used for secure connections. The file should must be in .pem format.**
  - **File Path:**
    - Users must specify the paths for both the **Key**and **Certificate**files, relative to the data/<instance name>/cert folder.
    - **Reload Interval:** Specify the interval in seconds for reloading the certificate if changes are detected. Set this field to 0 to disable.
    - This option is particularly suitable for scenarios involving automatic certificate renewal processes.

Note:The feature to use a **key****passphrase**for encrypted certificate keys is available from **N3uron**version **1.21.10.**

****

You can read about how to import the self-signed certificate authority in the appendix at the end of this article.****

- **Self signed certificate:**
  - **Certified hosts:**Comma-separated host list (domains/host names and/or IPs) that will be included in the autogenerated SSL certificate. It is **important**to include all the hosts from the machine where the WebUI will be accessed so that the web client does not return any errors. Hosts 127.0.0.1, localhost, and system hostname will automatically <meta charset="utf-8">be added to the certificate.  
**Note**   Starting from **N3uron**version **1.21.9,**specifying certified hosts is no longer necessary.

********
- **Header:**
  - **Logo:**The logo that will be shown on the right side of the header. If no logo is selected, the one in config/files/logo.png**will automatically be loaded.****
  - **Text:**The title of the web interface is displayed on the top-left side of the window. This is an easy way to identify the node. If left empty, the node name will be shown instead.****
- **Menu visibility:**
  - **Data > Real Time:**When disabled, the Data > Real Time menu element will be hidden.****
  - **Data > Historical:******When disabled, the Data > Historical menu element will be hidden.****
  - **Alarms > Real Time:**When disabled, the Alarms > Real Time menu element will be hidden.****
  - **Alarms > Historical:**When disabled, the Alarms > Historical menu element will be hidden.****
  - **Diagnostics:**When disabled, the Diagnostics menu element will be hidden.
  - ******Config:** When disabled, the Config menu element will be hidden.
  - **Licensing:** When disabled, the Licensing menu element will be hidden.

## Access

In this area, you will assign the corresponding permissions to the Roles previously created in the**Roles** section.

![Figure 3-Giving-the-corresponding-permissions](https://cdn.document360.io/54093ab5-6b22-4542-a265-04377931f11a/Images/Documentation/Figure%203-Giving-the-corresponding-permissions.png)

Parameters:

- **Enabled:**A disabled role will block any login attempt.
- **Permissions:**
  - **Data**********>**********Real Time:**
    - **View:**The user will be able to view tags in real time.
    - **Edit:**The user will be able to write values to tags with write access.
  - **Data**************>**************Historical:**
    - **View:** The user will be able to view a tag's historical data and save/load private configurations.
    - **Edit:** The user will also be able to save/load public configurations.
  - **Alarms**********>**********Real Time:**
    - **View:** The user will be able to view alarms in real-time.
    - **Edit:**The user will be able to ack alarms.
  - **Alarms**********>**********Historical:**
    - **View/Edit:**The user will be able to view alarm historical data.
  - **Diagnostics:**
    - **View:** The user will be able to view modules and link information in real-time.
    - **Edit:** The user will also be able to start/stop modules.
  - **Config:**
    - **View:** The user will be able to view configurations.
    - **Edit:** The user will also be able to modify configurations.
  - **Licensing:**
    - **View:** The user will be able to view licenses.
    - **Edit:**The user will also be able to save/remove licenses.

## [Embedded content](https://www.youtube.com/embed/Cuh51AyBeM4?&amp;list=PLS63jGt25U888sqlo_KcdHeK5zT5rMYfv&amp;wmode=opaque&amp;rel=0)

## Appendix: How to import the self-signed certification authority

### Windows (Chrome and Internet Explorer)

- **Step 1:**Open the certificate.
- **Step 2:** Click on Install Certificate... and then click Next.
- **Step 3:** Select to place the certificate in a store and click Browse.
- **Step 4:** Select Trusted Root Certification Authorities and click OK.
- **Step 5:** Click Next and Finish.

### Firefox

- **Step 1:** Click on the top right menu and go to Options.
- **Step 2:** Go to Advanced and click on the Certificates tab.
- **Step 3:** Click View Certificates and go to the Authorities tab.
- **Step 4:** Click Import... and load the certificate.
