cancel
Showing results for 
Search instead for 
Did you mean: 

hide port number in sap fiori url

hbrito
Explorer
0 Kudos

Hi expert,

I want to hide the port number of sap fiori url

https://dnsalias:8000/sap/bc/ui2/flp?sap-client=Client>&sap-language=EN

How can I do this change.

Regards

View Entire Topic
thalesvb
Active Contributor

You have to serve through port 80 to "hide" HTTP port, or 443 for HTTPS port (it is just a convention around the protocol).

The wise choice would be having a WebDispatcher serving on 80/443 and it directing requests to (ABAP) server. There is this blog series that gives example about the multiple architectural designs to serve through WebDispatcher, I recommend that to better understand how to config WebDispatcher profile.

You can also enable those ports directly on ABAP server by modifying ICM server profile parameters, but again, the wiser choice is serving through a Web Dispatcher (or any other Reverse Proxy application if you want to go non-SAP).

Kind Regards

hbrito
Explorer
0 Kudos

Dear Thales.

Thanks it's was helpful.

regards