how to remove port number from URL in apache tomcat if connector port is 8081
Tag : java , By : user107506
Date : March 29 2020, 07:55 AM
|
Node js- Application Without port Number
Date : March 29 2020, 07:55 AM
I wish this help you You have 2 processes here : NodeJS process, which serves your application httpd (Apache) process, which is generally used as an entry-point for serving multiple applications on one domain. Listen 80
<VirtualHost aip.xyz>
ServerName aip.xyz
ProxyPass / http://aip.xyz:5000/
ProxyPassReverse / http://aip.xyz:5000/
ProxyPreserveHost On
</VirtualHost>
Listen 80
<VirtualHost aip.xyz>
ServerName aip.xyz
ProxyPass /app1/ http://aip.xyz:5000/
ProxyPassReverse /app1/ http://aip.xyz:5000/
ProxyPass /appX/ http://aip.xyz:500X/
ProxyPassReverse /appX/ http://aip.xyz:500X/
ProxyPreserveHost On
</VirtualHost>
|
How to remove port number from Django application
Date : March 29 2020, 07:55 AM
|
Remove port number from Node HTTP request to external API
Date : March 29 2020, 07:55 AM
I think the issue was by ths following , It turns out setting the port to 80 and running with sudo solved the problem.
|
Difference in server port and websocket port in node.js chat application
Date : March 29 2020, 07:55 AM
|