Solved

Employee portal on another server

  • 6 December 2021
  • 2 replies
  • 49 views

Userlevel 3
Badge +8

 

Hi, we want to allow access to the Employee Portal outside of our internal network. is it possible to install the employee portal on a different server to avoid exposing the application server to the world?

icon

Best answer by Sajith D 7 December 2021, 03:54

View original

This topic has been closed for comments

2 replies

Userlevel 7
Badge +21

Hi @DominikaM ,

Using a separate App server instance will not be possible. However, you can minimize the exposure of the application endpoints by using a reverse proxy so that all requests can be terminated at the proxy and shielding the app server from public access. You can restrict the endpoints so other than the required endpoints, nothing else is exposed. This together with using Azure AD/ADFS authentication rather than default DB authentication will give you the additional option of using MFA when accessed from public networks. 

have a look at https://docs.ifs.com/techdocs/Foundation1/010_overview/210_security/090_exposing_to_internet/default.htm

 

Cheers.

Userlevel 3
Badge +8

Thank you.