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 ?
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
You can try to configure the dispatcher as a reverse proxy.
You can try to configure the dispatcher as a reverse proxy.
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>
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.