コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards.
解決済み

Hide port number 4502 in aem atuhor URL

Avatar

Level 1

Hello All,

 

Hope you are doing well !

 

I am running my AEM on Azure VM on Linux Server, Since the URL is looking like

http://abcd.aem.dev.net:4502/aem/start.html

now i want to hide this port number from the URL, I am not getting how to achieve this, could anyone please help here ?

トピック

トピックはコミュニティのコンテンツの分類に役立ち、関連コンテンツを発見する可能性を広げます。

1 受け入れられたソリューション

Avatar

正解者
Level 10

You can try to configure the dispatcher as a reverse proxy

元の投稿で解決策を見る

3 返信

Avatar

正解者
Level 10

You can try to configure the dispatcher as a reverse proxy

Avatar

Community Advisor

Hi @monish_gavali_23 

If you are using apache then you can use something like below

 

 

<VirtualHost *:80>
    ServerName abcd.aem.dev.net

    ProxyPreserveHost On
    ProxyPass / http://localhost:4502/
    ProxyPassReverse / http://localhost:4502/

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

 

Arun Patidar

AEM LinksLinkedIn

Avatar

Level 5

Hi @monish_gavali_23 

 

Please try using Apache Reverse Proxy for this.

 

<VirtualHost *:80>

    ServerName abcd.aem.dev.net

    ProxyPass / http://localhost:4502/

    ProxyPassReverse / http://localhost:4502/

</VirtualHost>

 

 

or If you’re using Azure Application Gateway or Azure Load Balancer, you can:

• Set up HTTP/HTTPS listener on port 80/443.

• Forward traffic to AEM’s port 4502.