Architecture

ZiSoft Awareness Application Architecture

ZiSoft SOA Architecture

1- Ingress Server ( Nginx ) :

Nginx has focused on high performance, high concurrency and low memory usage web server functionality, like load balancing, caching, access and bandwidth control, and the ability to integrate efficiently with a variety of applications

  • HTTP Handler

  • Serving Static Content

  • NGINX Reverse Proxy

  • NGINX Content Caching

  • Compression and Decompression

  • Secure Connect with SSL CA

2- UI Server ( Angular ) :

Frontend part of the application that users can see and interact with directly in order to receive the backend capabilities of the system. It involves everything that the user can see, touch and experience.

3- Web Application Server ( Laravel) :

Laravel is a web application framework with expressive, elegant syntax. ... Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as authentication, routing, sessions, and caching

- AUTHORIZATION TECHNIQUE :

Laravel provides a simple way to organize authorization logic and control access to resources.

- OBJECT-ORIENTED LIBRARIES :

pre-installed libraries to implement many advanced features, such as checking active users, Bcrypt hashing, password reset, CSRF (Cross-site Request Forgery) protection, and encryption.

-ARTISAN :

Developer has to usually interact with the Laravel framework using a command line that creates and handles the Laravel project environment.

-MVC SUPPORT :

Supports MVC Architecture ensuring clarity between logic and presentation. MVC helps in improving the performance, allows better documentation, and has multiple built-in functionalities.

-SECURITY :

Ues Bcrypt hashing algorithm for generating an encrypted representation of a password. Laravel uses prepared SQL statements which make injection attacks unimaginable. Along with this, Laravel provides a simple way to escape user input to avoid user injection of tag.

-SSO Integration :

  • One-click sign-in: Allows collaborators to sign in from your SSO provider without maintaining a separate username and password.

  • Automatic provisioning: Allows authorized users to create account when they require access.

-LDAP Integration :

LDAP integration allows your instance to use your existing LDAP server as the master source of user data.Administrators integrate with a Lightweight Directory Access Protocol (LDAP) directory to streamline the user login process and to automate administrative tasks such as creating users and assigning them role

4- Analytics server ( Metabase ) :

Analyzing data and presenting actionable information which helps executives, managers and other corporate users make informed training/phishing decisions.

- ETL : Extract, Transform and Load. An ETL tool extracts the data from different RDBMS source systems, transforms the data like applying calculations, concatenate, etc.

- BI : information management tool that is used to track KPIs, metrics, and other key data points relevant to a business, department, or specific process. Through the use of data visualizations, dashboards simplify complex data sets to provide users with at a glance awareness of current performance.

5- Cron server :

Laravel command scheduler allows for the fluent and expressive defining of command schedule within Laravel itself, and only a single Cron entry is needed on the server

6- Database Server ( MariaDB) :

MariaDB open source relational database management system (DBMS) that is a compatible drop-in replacement for the widely used MySQL database technology. MariaDB sports faster and safer replication with updates being up to 2x faster than with traditional MySQL Replication setups. ... MariaDB replication is backward compatible with MySQL servers,

Last updated